Home  >  Article  >  Web Front-end  >  How to disable a tag in jquery

How to disable a tag in jquery

王林
王林Original
2020-11-18 11:43:413251browse

How to disable the a tag in jquery: This can be achieved by removing the href attribute in the a tag, such as [$('#button').attr('disabled',"true");].

How to disable a tag in jquery

The method to disable the a tag is as follows:

(Learning video sharing: jquery video tutorial)

Method one:

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

Method two:

$(&#39;a.tooltip&#39;).live(&#39;click&#39;, function(event) {
   alert("抱歉,已停用!"); 
  event.preventDefault();  
});

Method three:

$(function(){
$(&#39;.disableCss&#39;).removeAttr(&#39;href&#39;);//去掉a标签中的href属性
$(&#39;.disableCss&#39;).removeAttr(&#39;onclick&#39;);//去掉a标签中的onclick事件
});

Method four:

The control button is disabled:

$(&#39;#button&#39;).attr(&#39;disabled&#39;,"true");添加disabled属性
$(&#39;#button&#39;).removeAttr("disabled"); 移除disabled属性

Related recommendations: js tutorial

The above is the detailed content of How to disable a tag in jquery. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn