您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)JQuery click()和onclick()有哪些區(qū)別,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
JQuery click()和onclick()區(qū)別:1、onclick是綁定事件,告訴瀏覽器在鼠標(biāo)點(diǎn)擊時(shí)候要做什么;2、click方法的主要作用是觸發(fā)調(diào)用click方法元素onclick事件。
JQuery click()和onclick()區(qū)別:
1、onclick是綁定事件,告訴瀏覽器在鼠標(biāo)點(diǎn)擊時(shí)候要做什么
2、click()方法的主要作用是觸發(fā)調(diào)用click方法元素onclick事件。
3、當(dāng)click()被點(diǎn)擊時(shí),首先執(zhí)行的是對(duì)應(yīng)元素的onclick()函數(shù),然后再是click(),示例如下:
JS代碼 test.js:
$("#testclick").click(function(){ console.log("$(\"#testclick\").click"); }); function test123(){ console.log("function test()"); }
<!DOCTYPE html> <html> <head> <title>TestJS.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!--<link rel="stylesheet" type="text/css" href="./styles.css">--> </head> <body> This is my HTML page. <br> <h2>Test html</h4> <div> <input type="button" onclick="test123();" class="input1" id="testclick" value="test_button"/> </div> <!-- JS--> <script src="js/lib/jquery.js"></script> <script src="js/test.js"></script> <!-- <script src="js/test2.js"></script> --> </body> </html>
關(guān)于JQuery click()和onclick()有哪些區(qū)別就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。