如何禁用頁面加載錨(a)標記或(默認禁用)並啓用它使用jquery或Javascript?如何禁用頁面加載錨(一)標記或(默認禁用),並使用jQuery或Javascript啓用它?
0
A
回答
2
您可以更改href
屬性data-href
和使用添加href
屬性:
$(function() {
$('[data-href]').each(function() {
var self = $(this);
self.attr('href', self.data('href'));
});
});
這將遍歷有數據href和添加href屬性的所有元素。
0
由於您需要在默認情況下禁用錨標記,因此您可以向每個標記添加一個類並使用javascript刪除calss。
.not-active {
pointer-events: none; // disables all the clicks
cursor: default; // shows the default cursor when you hover it instead of hand
}
你也可以改變字體顏色和其他人,這樣的文字不會出現像一個鏈接。
[編輯]
<script>
var anchorElements=document.getElementsByTagName("a"); //Gives the list of all anchor tag elements in the page as an array.
for(i=0;i<anchorElements.length;i++) // Iterate over the array
anchorElements[i].classList.remove("not-active"); // for each element .classList returns the list of classes specified. remove() is an array function to remove an element in the array
</script>
如果您正在使用jQuery你可以使用removeClass()jQuery函數
$("a").removeClass("not-active");
0
爲了回答您的評論(「我怎樣才能使用javascript刪除CALSS?PLZ幫助「)刪除類,有一個名爲classList的屬性包含它的類屬性。該屬性提供了方便添加或刪除類的方法。例如:
var myItemClasses= document.getElementById("item").classList;
myItemClasses.remove("my-classname"); // to remove
myItemClasses.add("my-classname"); // to add
希望這會有所幫助。
相關問題
- 1. 如何啓用/禁用錨標記
- 2. 如何使用jQuery啓用或禁用錨點?
- 3. 使用jquery禁用linkbutton(錨標記)
- 4. 使用jquery禁用錨標記
- 5. 如何在jQuery中禁用錨標記?
- 6. 如何在jquery中禁用錨標記?
- 7. jQuery - 根據條件禁用並啓用錨標記
- 8. 當頁面空閒時,如何在php中啓用或禁用Javascript啓用或禁用
- 9. CSS jQuery的標籤 - 禁用或隱藏在頁面加載
- 10. jQuery:我如何啓用禁用的錨標記
- 11. 啓用禁用錨,jQuery的
- 12. 如何禁用錨標記的默認CSS顏色
- 13. 如何禁用或刪除默認的HighChart加載消息?
- 14. 禁用錨定標記
- 15. 如何在頁面上禁用或啓用所有onClick圖片
- 16. 禁用默認主頁啓動
- 17. asp.net - 測量頁面加載時,javascript啓用/禁用
- 18. 默認錯誤頁面被禁用或修改
- 19. 啓用或禁用javascript中的按鈕
- 20. 如何在加載頁面時禁用錨點跳轉
- 21. 禁用或替換一些HTML標記
- 22. 禁用並啓用頁面滾動(Swift)
- 23. 當頁面加載完成後,我必須禁用按鈕,完全加載頁面後,我必須啓用使用jQuery或JavaScript如何做?
- 24. 禁用或檢測默認配置
- 25. 如何用jQuery或Javascript在網頁禁用元素
- 26. 啓用或禁用Cookie
- 27. 啓用或禁用iPhone
- 28. 啓用或禁用選項
- 29. 禁用默認的jQueryMobile錯誤加載頁面消息
- 30. Spring Security禁用默認登錄頁面
如何使用javascript去除calss? plz help –
但我想永久刪除該課程。這裏執行JavaScript後,它被刪除,但頁面加載後againg它變得停用。所以可以永久刪除課程。 –