首页 > 代码库 > jquery禁用a标签,jquery禁用按钮click点击
jquery禁用a标签,jquery禁用按钮click点击
jquery禁用a标签方法1
$(document).ready(function () { $("a").each(function () { var textValue = http://www.mamicode.com/$(this).html(); if (textValue =http://www.mamicode.com/= "XX概况" || textValue =http://www.mamicode.com/= "服务导航") { $(this).css("cursor", "default"); $(this).attr(‘href‘, ‘#‘); //修改<a>的 href属性值为 # 这样状态栏不会显示链接地址 $(this).click(function (event) { event.preventDefault(); // 如果<a>定义了 target="_blank“ 需要这句来阻止打开新页面 }); } }); });
jquery禁用a标签方法2
$(‘a.tooltip‘).live(‘click‘, function(event) { alert("抱歉,已停用!"); event.preventDefault(); });
jquery禁用a标签方法3
$(function(){ $(‘.disableCss‘).removeAttr(‘href‘);//去掉a标签中的href属性 $(‘.disableCss‘).removeAttr(‘onclick‘);//去掉a标签中的onclick事件 });
jquery控制按钮的禁用与启用
$(‘#button‘).attr(‘disabled‘,"true");添加disabled属性 $(‘#button‘).removeAttr("disabled"); 移除disabled属性
jquery禁用a标签,jquery禁用按钮click点击
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。