在 javascript 中禁用锚标记并删除下划线

发布于 2024-08-23 14:20:34 字数 518 浏览 8 评论 0原文

我有一个锚标记,我想根据某些条件禁用或启用它。我可以使用以下函数来实现此目的:

function disableEnableAnchor(obj, disable) {
    if(disable) {
        var href = obj.getAttribute("href");
        if(href && href != "" && href != null)
            obj.setAttribute('href_bak', href);
        obj.removeAttribute('href');        
    } else {
        var href_bak = obj.attributes['href_bak'].nodeValue;        
        obj.setAttribute('href', href_bak);
    }
}

但是当锚点处于禁用状态时,我无法删除下划线。我怎样才能在这个函数中实现这一点?

I have a anchor tag which I would like to disable or enable depending upon some condition. I am able to achive this using the following function:

function disableEnableAnchor(obj, disable) {
    if(disable) {
        var href = obj.getAttribute("href");
        if(href && href != "" && href != null)
            obj.setAttribute('href_bak', href);
        obj.removeAttribute('href');        
    } else {
        var href_bak = obj.attributes['href_bak'].nodeValue;        
        obj.setAttribute('href', href_bak);
    }
}

But I am not able to remove the underline when the anchor is in a disabled state. How can I achieve this inside this function?

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

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

发布评论

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

评论(4

顾冷 2024-08-30 14:20:34
obj.style.textDecoration = "none"
obj.style.textDecoration = "none"

您可能需要考虑用跨度替换锚点。

You might want to consider replacing the anchor with a span.

避讳 2024-08-30 14:20:34

这听起来像是样式表问题。是否有类似

a {
    text-decoration: underline;
}

CSS 文件中的内容应用于页面?

将其替换为以下 CSS 应该会使 标记仅在具有 href 属性时才带有下划线。

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: underline;
}

This sounds like a stylesheet issue. Is there something like

a {
    text-decoration: underline;
}

in a CSS file that’s applied to the page?

Replacing it with the following CSS should make <a> tags only be underlined when they have an href attribute.

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: underline;
}
嘿嘿嘿 2024-08-30 14:20:34

在 HTML 上使用它:

<a href="mylink" style="text-decoration

Use this on HTML:

<a href="mylink" style="text-decoration
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文