Firefox 8 禁用=禁用

发布于 2024-12-22 10:14:46 字数 532 浏览 0 评论 0原文

我刚刚完成了一个 Web 应用程序的开发,但我遇到了一个关于 Firefox 8 中的禁用属性的非常烦人的问题。

看起来好像 disabled=disabled 无效,因此我的超链接不会呈现为禁用状态。

我正在以下 html 代码上尝试: 我尝试了许多不同的 jQuery 命令,只是为了确保它不是我尝试禁用超链接的特定方法。

<a id="continue_link" href="/">Link</a>

<script type="text/javascript">
    //$('#continue_link').attr("disabled", "true");
    //$('#continue_link').attr("disabled", true);
    $('#continue_link').prop("disabled", true);
    $('#continue_link').prop("disabled", "true");
</script>

I have just finished developing a web app but I have a really annoying annoying issue concerning the disabled property in firefox 8.

It appears as though disabled=disabled is not valid and therefore my hyperlink will not render as disabled.

I am trying this out on the following html code:
I have tried a number of different jQuery commands just to make sure it was not a specific method of me trying to disable to hyperlink.

<a id="continue_link" href="/">Link</a>

<script type="text/javascript">
    //$('#continue_link').attr("disabled", "true");
    //$('#continue_link').attr("disabled", true);
    $('#continue_link').prop("disabled", true);
    $('#continue_link').prop("disabled", "true");
</script>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心的位置 2024-12-29 10:14:46

disabled 不是(也从来不是)a 元素的属性。为了防止链接默认行为,jQuery 中最简单的方法是使用 return false 或更具体地说 e.preventDefault()

试试这个:

$("#continue_link").click(function(e) {
    if (myCondition == "something") {
        // stop the link
        e.preventDefault();
        alert("I'm sorry. I can't let you do that, Dave.");
    }
});

disabled is not (and never was) an attribute of the a element. To prevent a links default behaviour, the simplest method in jQuery is to use either return false or more specifically e.preventDefault().

Try this:

$("#continue_link").click(function(e) {
    if (myCondition == "something") {
        // stop the link
        e.preventDefault();
        alert("I'm sorry. I can't let you do that, Dave.");
    }
});
单身狗的梦 2024-12-29 10:14:46

您想要将其作为属性添加到标记中:

onclick="return false;"

或者在 jQuery 中:

$(function(){
    $('#continue_link').click(function(){
        return false;
    });
});

disabled 不是在锚标记上有效的属性。

You want to either add this to the tag as an attribute:

onclick="return false;"

Or this in jQuery:

$(function(){
    $('#continue_link').click(function(){
        return false;
    });
});

disabled is not an attribute that is valid on an anchor tag.

画▽骨i 2024-12-29 10:14:46

下面的css样式将解决firefox中的问题

a[disabled] {
color: gray !important;
cursor: default !important;
text-decoration: none;
}

The following css style this will solve the issue in firefox

a[disabled] {
color: gray !important;
cursor: default !important;
text-decoration: none;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文