3
這裏,如何使用按鈕選項卡禁用此鏈接?是否有可能?如何在jQuery中禁用錨標記?
<a href="http://www.google.com">
<button>click here for go to yahoo</button>
</a>
這裏,如何使用按鈕選項卡禁用此鏈接?是否有可能?如何在jQuery中禁用錨標記?
<a href="http://www.google.com">
<button>click here for go to yahoo</button>
</a>
在運行時給予ID並禁用。
HTML:
<a id="disableanchor" href="http://www.google.com">
<button id="buttononclickdisable">click here for go to yahoo</button>
</a>
的Javascript:
$('#buttononclickdisable').click(function(){
$('#disableanchor').attr("disabled","disabled");
});
或刪除 '點擊' 事件監聽器。
$("#anchorid").off('click');
基本上禁用它,你可能會做:
$("a[href='http://www.google.com']").click(function(e) {
e.preventDefault();
});
但是,如果你添加一個class和id和有針對性的將是更清晰,更準確的是,在選擇。實際上,這樣做是爲了防止發生該行爲,它不處理狀態的管理,因此很明顯該鏈接在點擊時不起作用。
..它不起作用..錨標籤沒有得到禁用 – Dhivya
srry ..它工作得很好:) – Dhivya