可能是你的jquery版本有問題,我用了自己的1.7.2以及谷歌的在線都是沒問題的。順帶提一句,table中別再套用table了。
為東風(fēng)等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及東風(fēng)網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站建設(shè)、成都做網(wǎng)站、東風(fēng)網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
$(this)是Jquery對象 而div id="product" class="box1" onmousemove ="servicechange()"這句中的事件是js 可以在函數(shù)中傳個參數(shù) 如下:
div id="product" class="box1" onmousemove ="servicechange(this)"
strong class="uptext"產(chǎn)品介紹/strong
hr class="upline" /
div class ="item_box"
img src="images/product1.jpg" alt="產(chǎn)品介紹" /
div class="item_text"產(chǎn)品名稱/div
/div
/div
script src="js/jquery-1.7.1.js" type="text/javascript"/script
script type="text/javascript"
function servicechange(obj) {
$(obj).find('strong').removeClass("uptext");
$(obj).find('strong').addClass("uptext_red");
}
/script
已測試成功
$("p a")
$("").after()
li:nth-child(6)
$("p").html("") //html后的()給空字符
我能想到的就這些,不知道是不是正確
$("#xx_all,#xx2_all").click(function () {
alert($(this).parent().prevAll('td').find('.boll').length);
$(this).parent().prevAll('td').find('.boll').each(function(){
alert($(this).html());
})
});
答案是什么都選不到.
如果你是想選到A標(biāo)簽,那么應(yīng)該:$(".abc
a")
另外:標(biāo)簽聯(lián)合class選擇器應(yīng)該隔開一個空格