溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascriptvoid(0)含義以及與"#"的區(qū)別講解

發(fā)布時間:2020-09-01 10:02:36 來源:腳本之家 閱讀:172 作者:muzidigbig 欄目:web開發(fā)

javascript:void(0) 中最關(guān)鍵的是 void 關(guān)鍵字, void 是 JavaScript 中非常重要的關(guān)鍵字,該操作符指定要計算一個表達式但是無返回值。

說明:

  • 1.javascript:void(0)這種偽協(xié)議,少寫的好,如果你看過一些web標準的書就知道為什么了。(不懂,原話摘的,暫做記錄)
  • 2.鏈接(href)直接使用javascript:void(0)在IE中可能會引起一些問題,比如:造成gif動畫停止播放等,所以,最安全的辦法還是使用“####”。為防止點擊鏈接后跳轉(zhuǎn)到頁首,onclick事件return false即可。
  • 3.如果僅僅是想鼠標移過,變成手形,可以使用

<span onclick="foo()">Click Me!</span>  

推薦寫法:javascript:;

為什么要使用href=”javascript:void(0);”

href=”javascript:void(0);”這個的含義是,讓超鏈接去執(zhí)行一個js函數(shù),而不是去跳轉(zhuǎn)到一個地址,而void(0)表示一個空的方法,也就是不執(zhí)行js函數(shù)。

javascript:是偽協(xié)議,表示url的內(nèi)容通過javascript執(zhí)行。

void(0)表示不作任何操作,這樣會防止鏈接跳轉(zhuǎn)到其他頁面。這么做往往是為了保留鏈接的樣式,但不讓鏈接執(zhí)行實際操作,

<a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="window.open()"> 點擊鏈接后,頁面不動,只打開鏈接

<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="javascript:return false;"> 作用一樣,但不同瀏覽器會有差異。

href=”#"的區(qū)別(谷歌瀏覽器)

<a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >點擊</a>點擊鏈接后不會回到網(wǎng)頁頂部

javascriptvoid(0)含義以及與"#"的區(qū)別講解

<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" >點擊</a> 點擊后會回到網(wǎng)面頂部,并會在地址欄的后面加個 #

javascriptvoid(0)含義以及與"#"的區(qū)別講解

"#"其實是包含了位置信息,例如默認的錨點是#top 也就是網(wǎng)頁的上端

而javascript:void(0) 僅僅表示一個死鏈接這就是為什么有的時候頁面很長瀏覽鏈接明明是??墒翘鴦拥搅隧撌?/p>

而javascript:void(0) 則不是如此所以調(diào)用腳本的時候最好用void(0)

使用javascript的方法(下面的這些用法會報錯)

<a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="javascript:方法;return false;">文字</a>

<a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="javascript:方法;return false;">文字</a>

補充 :<a href="javascript:fn();" rel="external nofollow" 這樣點擊a標簽就可以執(zhí)行fn()函數(shù)了。

若有不足請多多指教!希望給您帶來幫助!

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI