如何检查 jquery 中的 attr() 是否为空?
我有一些使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以简单地将属性作为布尔值进行测试,而不用针对
undefined
进行测试:You can simply test the attribute as a boolean instead of testing it against
undefined
:您可以检查空的
href
属性,并使用“解开”这些链接。 ReplaceWith()
像这样:您可以在这里尝试一下。
You can check for an empty
href
attribute and "unwrap" those links using.replaceWith()
like this:You can give it a try here.
简单地删除“href”属性:
对于多个定位,例如“style”属性:
这样,您只会在属性为空时删除该属性,而不是删除整个元素本身。
完整的代码示例是:
To simply get rid of the 'href' attribute:
For multiple targeting, for example the 'style' attribute:
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: