jquery
lsfa1234
这个作者很懒,什么都没留下…
展开
-
模糊查找元素个数
$("div[id^=jq_]");$("div:not([id^=jq_])");alert($("td[id^=submenu]").length);原创 2009-08-30 21:09:00 · 716 阅读 · 0 评论 -
jquery使用一
$("#diva").show(); $("#imga").attr("src","../images/indexD_12.jpg"); var pos =$("#imga").offset(); $("#diva").css({"top":pos.top+30,"left":pos.left+15}); $("#diva").animate({ left: pos.left+15,top:po原创 2009-11-26 14:57:00 · 379 阅读 · 0 评论 -
jqurey控制控件的可用不可用
<br />如果用原始的方法能够实现输入框的不可用 <br />document.getElementById("other_category").disabled = true;<br />但是使用$("#")后却不好用了,输入框还是可用的 $("#other_category").disabled = true;<br />谁能告诉我一下为什么阿???<br />看看这样可不可以 <br />$("#other_category").attr('disabled',' true');<br /><b原创 2010-07-18 15:16:00 · 7098 阅读 · 0 评论