-
“#frmTest”与“:input”选择器之间必须存在空格,否则样式无法显示出来查看全部
-
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery动画特效</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js" type="text/javascript"></script> <style> div1{position:absolute;width:50px;height:50px;background:pink;margin-top:10px;} </style> </head> <body> <input id="left" type="button" value="左移"> <input id="right" type="button" value="右移"> <div1></div> <div2></div> <script type="text/javascript"> $(function(){ $("#left").bind("click",function(){ $("div1").animate({ left:'-=50px' },3000,function(){ }); }); $("#right").bind("click",function(){ $("div1").animate({ left:'+=50px' },3000,function(){ }); }); }); </script> </body> </html>查看全部
-
$.extend()除了拓展工具函数外,还可以扩展原有的Object对象,在扩展对象时,两个对象合并,当存在相同属性名时,后者的属性覆盖前者,格式:$.extend(obj1,obj2,...objN);查看全部
-
星号全部,大于子辈,都好随意,加号弟弟,~所有弟弟,空格子孙查看全部
-
The $.each() function is not the same as $(selector).each(), which is used to iterate, exclusively, over a jQuery object. The $.each() function can be used to iterate over any collection, whether it is an object or an array.查看全部
-
动态元素绑定事件用live() 静态元素绑定事件可以用bind()和live()查看全部
-
输入框 选中为 focus 从选中状态离开为blur查看全部
-
$.contains(slector1,selector2),第一个为包含其他的节点,第二个为被包含的节点.返回的可能是true或者false;查看全部
-
封装类、对象的最优方式: function ClassName(data){ this.property=data; }; ClassName.prototype={ Fname:function(){ do some thing. }, Fname1:function(){ do some thing. } };查看全部
-
定义一个数组1.var student=["studenta","studentb"] 2.var student=new Array(); student[0]="studenta";student[1]="studentb";3.var student=Array(Array("studenta","studentb"),Array("studentaAge","studentbAge"));查看全部
-
fadeIn fadeOut 前者是把隐藏的显示出来 后者是把显示的再隐藏查看全部
-
$()就是jQuery中的函数,它的功能是获得()中指定的标签元素。如示例中$(“p”)会得到一组P标签元素,其中“p”表示CSS中的标签选择器。$("#aaaa") 可以通过ID获得元素 $()中的()不一定是指定元素,也可能是函数。查看全部
-
$(document).ready(function(){}) 等价于 window.onload = function(){}查看全部
-
大部分选择器 可以总结归纳为 :type值 选择器查看全部
-
表单单行文本选择器 :text查看全部
举报
0/150
提交
取消