0

我正在寻找有关 Javascript 的帮助。我有一段HTML如下:

<div class="KeepShopping FloatRight GreenButton">
    <a href="http://www.xyz.com">Click here to keep shopping</a>
</div>

一旦其中的链接在 HTML 中没有文本,我试图从 DIV 中删除类“GreenButton”,因此最终结果应如下所示:

<div class="KeepShopping FloatRight">
    <a href="http://www.xyz.com"></a>
</div>

我一直没有成功地尝试使用以下代码来获取它,该代码在页面加载/刷新结束时运行:

<script type="text/javascript">    
$(".KeepShopping").each(function() {
    if($("a", this).html == "") {
        $(this).removeClass("GreenButtonLge");
    }
});
</script>    

任何建议/想法都非常欢迎!提前感谢您的帮助!

4

1 回答 1

5

html是一个函数,而不是一个属性。这样写。。

<script type="text/javascript">    
$(".KeepShopping").each(function() {
    if($("a", this).html() == "") {
        $(this).removeClass("GreenButtonLge");
    }
});
</script>
于 2013-07-19T07:51:45.493 回答