jquery demo
luoyuanxi
高级程序员
展开
-
jquery对checkbox实现全选效果
12 function selectAll(checkOBJ){ if(checkOBJ.checked) $(input[@name=select_list]).attr(checked,true); else $(input[@name=select_list]).attr(checked,false); }原创 2007-12-11 17:20:00 · 679 阅读 · 0 评论 -
jquery对div实现轮换效果(从上到下...)
script src="lib/jquery.js" type="text/javascript">script>body>input type="button" id="showDiv_1" value="show 1"/>div id="GridView1">dt>What shouldnt I do to the bird? 111dt>dd>1111111111111111111原创 2007-12-12 17:15:00 · 1061 阅读 · 0 评论 -
jquery对input="button" onClick的改变
$("#test").click( function(){alert("welcome"); });原创 2007-12-11 17:27:00 · 1926 阅读 · 0 评论 -
jquery对div隐藏与显示
script src="lib/jquery.js" type="text/javascript">script>body>div id="test"> hello world!div>script>... 方式1: --> $("#test").fadeOut("slow"); $("#test").fadeIn("fast"); 方式2: --> $("#test").hide(原创 2007-12-12 17:30:00 · 614 阅读 · 0 评论