gpt4 book ai didi

jquery - 检查div是否为空问题

转载 作者:行者123 更新时间:2023-12-01 07:21:04 25 4
gpt4 key购买 nike

我想检查 div 是否为空,如果是的话我想向其中添加文本“空”。

我做错了什么?谢谢!

js Fiddle File

HTML

<div class="staff-row">
<img alt="" src="foo.jpg" />
<h2>Lorem Ipsum! FOOO!</h2>
<p>Lorem Ipsum</p>
</div>
<!-- eo : staff-row -->

jQuery

$('.staff-row').mouseenter(function() {
if ($('.staff-row').is(':empty')) {
$('.staff-row').text('empty');
} else {
$('.staff-row').text('full');
}
});​

最佳答案

您需要使用$(this)而不是$('.staff-row'),另外确保div打开之间没有空格和结束标记。

<强> Live Demo

$('.staff-row').mouseenter(function() {
if ($(this).is(':empty')) {
$(this).text('empty');
} else {
$(this).text('full');
}
});​

如果您想在 div 标签之间留有空格,可以使用 if($.trim($(this).text()).length == 0)

<强> Live Demo

$('.staff-row').mouseenter(function() {
if($.trim($(this).text()).length == 0){
$(this).text('empty');
} else {
$(this).text('full');
}
});​

关于jquery - 检查div是否为空问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13608309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com