05 2013 档案
jQuery插件(输入关键字出现提示,并可查询)
摘要:<head> <title></title> <style type="text/css"> #txtKey{ width:300px;} </style> <link href="jquery.autocomplete.css" rel="stylesheet" type="text/css" /> <script src="Jquery1.7.js" type="text/javascript"
阅读全文
jQuery中插件的应用(注册的验证)
摘要:<head> <title></title> <style type="text/css"> span { color:Red; } </style> <script src="Jquery1.7.js" type="text/javascript"></script> <script src="jquery.validate.js" type="text/javascript"></scrip
阅读全文
jQuery中图片隐藏效果的所有方法
摘要:<head> <title></title> <style type="text/css"> .imgclass { width: 300px; height: 300px; border: solid 1px red; position:relative; left:100px; top:100px; } img { position:absolute; top:10px; left:10px; height:100px; width:100px; } td { width:300px; height:300px; } &l
阅读全文
jQuery中animate的应用(图片自动移动)
摘要:图片按照数字的顺序移动<head> <title></title> <style type="text/css"> img { position:absolute; top:13px; left:13px; width:100px; height:100px; } td { width:100px; height:100px; border:1px solid red; } </style> <script src="jquery-1.9.1.js" type="text/jav
阅读全文
jQuery中的fadeIn、fadeOut、fadeTo的应用
摘要:<head> <title></title> <style type="text/css"> #img1 { width:400px; height:500px; } </style> <script src="jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $('#
阅读全文
C#计算器
摘要:前台:后台:String Fh = "";//用于存储符号运算符 double a, b, c;//a为第一个接收的值,b为第二个值,c为计算结果 long s = 1;//初始小数的位数 // 构造函数 public MainPage() { InitializeComponent(); } public void anniu(double i)//按钮的方法 { if (Fh.Equals(""))//是否当前有运算符 { if (s == 1)//判断是否有小数点 { a = a * 10 + i;//计算无小数的值 } else { a = a
阅读全文
浙公网安备 33010602011771号