如何检查 jquery 中的 attr() 是否为空?

发布于 2024-09-24 20:31:00 字数 665 浏览 4 评论 0原文

我有一些使用 PHP 创建的 div。 div 内的锚点始终有一个 HREF,即使它是空白的。基本上,我试图检测 HREF 是否为空。如果它有内容,则不执行任何操作,如果它是空白,则删除文本,删除锚点,然后将文本放回原处。

这是 div:

<div class="title"> 
    <a class="article" href="">Lorem Ipsum</a> 
</div> 

这是我的代码:

jQuery(document).ready(function($) { //required for $ to work in Wordpress

    $(".article").each(function(){
        if ($(this).attr('href') !== undefined) {
            return;
        } else {
            var linkTitle = $(this).html();
            $(this).parent().empty().html(linkTitle);
        }                               
    });    
//-->
});

I have a few divs that are created using PHP. The anchor within the div always has a HREF, even if it is blank. Basically, I am trying to detect if the HREF is blank. If it has content, do nothing, if it's blank, strip the text out, delete the anchor, them put the text back in.

Here is the div:

<div class="title"> 
    <a class="article" href="">Lorem Ipsum</a> 
</div> 

Here is my code:

jQuery(document).ready(function($) { //required for $ to work in Wordpress

    $(".article").each(function(){
        if ($(this).attr('href') !== undefined) {
            return;
        } else {
            var linkTitle = $(this).html();
            $(this).parent().empty().html(linkTitle);
        }                               
    });    
//-->
});

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

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

发布评论

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

评论(3

七分※倦醒 2024-10-01 20:31:00

您可以简单地将属性作为布尔值进行测试,而不用针对 undefined 进行测试:

if ($(this).attr('href')) {
  // href is not blank
} else {
  // href is blank
}

You can simply test the attribute as a boolean instead of testing it against undefined:

if ($(this).attr('href')) {
  // href is not blank
} else {
  // href is blank
}
不知在何时 2024-10-01 20:31:00

您可以检查空的 href 属性,并使用 “解开”这些链接。 ReplaceWith() 像这样:

$(".article[href='']").replaceWith(function() { return this.innerHTML; });

您可以在这里尝试一下

You can check for an empty href attribute and "unwrap" those links using .replaceWith() like this:

$(".article[href='']").replaceWith(function() { return this.innerHTML; });

You can give it a try here.

意犹 2024-10-01 20:31:00

简单地删除“href”属性:

$("#myLink[href='']").removeAttr('href');

对于多个定位,例如“style”属性:

$("#myDiv td, a, p, table, nav, header[style='']").removeAttr('style');

这样,您只会在属性为空时删除该属性,而不是删除整个元素本身。

完整的代码示例是:

$('#myDiv table, tr, td, a, p').each(function() { 
if ($(this).attr('style') == '') { 
    $(this).removeAttr('style'); 
} 
})

To simply get rid of the 'href' attribute:

$("#myLink[href='']").removeAttr('href');

For multiple targeting, for example the 'style' attribute:

$("#myDiv td, a, p, table, nav, header[style='']").removeAttr('style');

This way, you'll only get rid of the Attribute when it's empty instead of deleting the whole element itself.

A full code example would be:

$('#myDiv table, tr, td, a, p').each(function() { 
if ($(this).attr('style') == '') { 
    $(this).removeAttr('style'); 
} 
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文