2022-06-13 分類(lèi): 網(wǎng)站建設(shè)
今天在使用jquery替換代碼中元素的click事件,由于元素已指定綁定onclick事件,試了好幾種方法都不行。
示例如下:
1 | <divonclick='alert(111)'id='demo1'></div> |
現(xiàn)在想通過(guò)js來(lái)動(dòng)態(tài)更改 #demo1元素的click事件。
不行的代碼有
1 2 3 4 5 | $('#demo1').attr('onclick',function(){alert(222)}); 及 $('#demo1').click(function(){ alert(222); }); |
在網(wǎng)上查找了下,有下面幾種解決方法
jquery解決方法:
1 2 3 | $('#demo1').unblind('click').removeAttr('onclick').click(function(){ alert(222); }); |
js原生解決方法
1 2 3 | document.getElementById('demo1').onclick=function(){ alert(222) } 也可通過(guò)jquery來(lái)寫(xiě),如 $('#demo1')[0].onclick=function(){ alert(222) } |
當(dāng)前文章:js中如何替換html元素的click事件方法
地址分享:http://muchs.cn/news20/166570.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、網(wǎng)站建設(shè)、關(guān)鍵詞優(yōu)化、云服務(wù)器、品牌網(wǎng)站設(shè)計(jì)、全網(wǎng)營(yíng)銷(xiāo)推廣
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容