上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: 官网地址:http://bassistance.de/jquery-plugins/jquery-plugin-validationjQuery plugin: Validation 使用说明转载自:http://blog.sina.com.cn/s/blog_608475eb0100h3h1.html一导入js库<script src="../js/jquery.js" type="text/javascript"></script><script src="../js/jquery.validate.js&qu 阅读全文
posted @ 2012-11-19 11:33 ishibin 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1. JS中取得Asp.Net的值(1)取得服务端控件的值var s = document.getElementById("TextBox1").value; //取得TextBox1的Text值(2)取得全局变量的值在Page_Load()方法前定义protected String sT;在Page_Load()方法中赋值sT = "哈哈";JS中这样写取得var s = "<%=sT %>";---------------------------------------------------------------- 阅读全文
posted @ 2012-11-19 10:31 ishibin 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 类库预览https://developers.google.com/speed/libraries/AudienceThis documentation is designed for people familiar withJavaScriptprogramming and object-oriented programming concepts. There are manyJavaScript tutorialsavailable on the Web.IntroductionThe Google Hosted Libraries provides your applications w 阅读全文
posted @ 2012-11-14 10:26 ishibin 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 初学ASP.NET(C#)问题就是多,真是不知道从何处下手 在开发项目的时候遇到这样的问题:用户提交验证。当用户点提交按钮后,看到某些人写的验证代码都是写在后台ASPX.CS里面然后再有Response.Write(".........."),如: protected void btn_Save_Click(object sender, EventArgs e) { if (tpName.Text.Trim() == "") { Response.Write("<script language='JavaScript'&g 阅读全文
posted @ 2012-11-13 14:24 ishibin 阅读(900) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_3e4943b601015o8b.htmlhttp://www.cnblogs.com/jerrold1108cn/articles/1551543.htmlhttp://www.codesky.net/article/201111/114668.htmlhttp://www.cnblogs.com/hejunrex/archive/2011/11/17/2252193.htmlhttp://www.cnblogs.com/buzzlight/archive/2010/06/30/1768393.htmlhttp://www.cnb 阅读全文
posted @ 2012-11-13 10:52 ishibin 阅读(137) 评论(0) 推荐(0) 编辑
摘要: < script>setTimeout("location.href='url'",2000)< /script> < meta http-equiv="refresh" content="300; url=target.html"> 用window.location.href方法二: <script type="text/javascript"> var secs = 30; //6为倒计时秒数 for (i = 0; i <= secs; i 阅读全文
posted @ 2012-11-12 21:48 ishibin 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 实现效果:点击左侧菜单栏,右侧的iframe显示相应页面,并根据相应页面的高度自适应iframe的高度。兼容测试:ie6.0/chrom/firefox <ul style=" float:left; width:200px; background:red; position:fixed;"> <li><a href="main.aspx" target="frame_content">菜单一</a></li> <li><a href="main2 阅读全文
posted @ 2012-11-12 12:20 ishibin 阅读(546) 评论(0) 推荐(0) 编辑
摘要: jQuery零基础学习笔记(一)Q:如何添加jQuery库?A:两种方式。 第一种,从jQuery.com网站上下载名为jQuery.js的库函数到本地,再加载,如下:<head> <script type="text/javascript" src="jquery.js"></script> </head> 第二种,不用在本地存放jQuery库,而是加载google和Microsoft的jQuery的核心文件,如下:<head> <script type="text/javas 阅读全文
posted @ 2012-09-16 10:05 ishibin 阅读(309) 评论(0) 推荐(1) 编辑
摘要: Lazy Load是一个用 JavaScript 编写的 jQuery 插件. 它可以延迟加载长页面中的图片. 在浏览器可视区域外的图片不会被载入, 直到用户将页面滚动到它们所在的位置. 这与图片预加载的处理方式正好是相反的.在包含很多大图片长页面中延迟加载图片可以加快页面加载速度. 浏览器将会在加载可见图片之后即进入就绪状态. 在某些情况下还可以帮助降低服务器负担.Lazy Load 灵感来自 Matt Mlinac 制作的YUI ImageLoader工具箱. 这是演示页面.怎样使用?Lazy Load 依赖于jQuery. 请将下列代码加入页面head区域:<script src= 阅读全文
posted @ 2012-09-15 16:07 ishibin 阅读(308) 评论(0) 推荐(0) 编辑
摘要: SuperSlidev1.2SuperSlide 是致力于实现网站统一特效调用的函数,能解决大部分标签切换、焦点图切换等效果,还能多个slide组合创造更多的效果。(兼容ie内核(包括无敌的ie6)、webkit内核、ff、opera等主流浏览器)。插件主页http://www.superslide2.com/Demo页面http://www.superslide2.com/demo.html下载地址http://www.superslide2.com/downLoad.html 阅读全文
posted @ 2012-09-14 14:44 ishibin 阅读(684) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页