js jquery 禁用a标签 点击事件

时间:2025-03-04 14:14:28
$(document).ready(function () {
	$("a").each(function () {
		var textValue = $(this).html();
		if (textValue == "XX概况" || textValue == "服务导航") {
			$(this).css("cursor", "default");
			$(this).attr('href', '#');     //修改<a>的 href属性值为 #  这样状态栏不会显示链接地址  
			$(this).click(function (event) {
				();   // 如果<a>定义了 target="_blank“ 需要这句来阻止打开新页面
			});
		}
	});
});

jquery禁用a标签方法2
$('').live('click', function(event) {
	alert("抱歉,已停用!");  
	();   
});
jquery禁用a标签方法3
$('#button').attr('disabled',"true");添加disabled属性
$('#button').removeAttr("disabled"); 移除disabled属性