網(wǎng)上查了后有一下幾種實現(xiàn)方法
1.css禁用鼠標(biāo)點(diǎn)擊事件
.disabled { pointer-events: none; }
注:(這個沒有試過)
2.直接在js中使用阻止事件的進(jìn)行
e.stopPropatation||e.cancelBubble = true
jquery 禁用a標(biāo)簽 方法1
$(document).ready(function() {
$("a").each(function() {
var textValue = $(this).html();
if (textValue == "XX概況" || textValue == "服務(wù)導(dǎo)航") {
$(this).css("cursor", "default");
$(this).attr('href', '#');
//修改<a>的 href屬性值為 # 這樣狀態(tài)欄不會顯示鏈接地址
$(this).click(function(event) {
event.preventDefault();
// 如果<a>定義了 target="_blank“ 需要這句來阻止打開新頁面
});
}
});
});
jquery 禁用a標(biāo)簽 方法2
$('a.tooltip').live('click', function(event) {
alert("抱歉,已停用壹若!");
event.preventDefault();
});
jquery 禁用a標(biāo)簽 方法3
$(function() { $('.disableCss').removeAttr('href'); //去掉a標(biāo)簽中的href屬性 $('.disableCss').removeAttr('onclick'); //去掉a標(biāo)簽中的onclick事件
});
jquery控制按鈕的禁用與啟用
控制按鈕為禁用:
$('#button').attr('disabled', "true");
添加disabled屬性
$('#button').removeAttr("disabled");
移除disabled屬性
live() 方法為被選元素附加一個或多個事件處理程序概龄,并規(guī)定當(dāng)這些事件發(fā)生時運(yùn)行的函數(shù)厅目。
通過 live() 方法附加的事件處理程序適用于匹配選擇器的當(dāng)前及未來的元素(比如由腳本創(chuàng)建的新元素)。
問題:使用jQuery的live()方法綁定事件萤彩,有時會出現(xiàn)重復(fù)綁定的情況,如繁成,當(dāng)點(diǎn)擊一個按鈕時凄贩,此按鈕所綁定的事件會并執(zhí)行n遍。
解決:使用die()方法苟鸯,在live()方法綁定前,將此元素上的前面被綁定的事件統(tǒng)統(tǒng)解除棚点,然后再通過live()方法綁定新的事件早处。
Js代碼
//先通過die()方法解除,再通過live()綁定
$("#selectAll").die().live("click",function(){
//事件運(yùn)行代碼
});
//先通過die()方法解除瘫析,再通過live()綁定
$("#selectAll").die().live("click",function(){
//事件運(yùn)行代碼
}