0

我有一个包含多个 div 的页面。div 具有相同的后缀,但前缀不同。我想要做的是遍历它们,如果其中一个包含 0 隐藏描述 div。

div 看起来像这样:

<div id="first_desc">First</div><div id="first_note1">0</div>
    <div id="second_desc">Second</div><div id="second_note1"></div>
    <div id="third_desc">Third</div><div id="third_note1"></div>

我的脚本是这样的:

$(document).ready(function() {

// Variables
    var firstdiv = 'first';
    var seconddiv = 'second';
    var thirddiv = 'third';

// Array
var myArray = new Array(firstdiv, seconddiv, thirddiv);

for(var x = 0; x < myArray.length; x++) {

    if('$("#' + myArray[x] + '_note1").text() === $.trim("0")') {
        '$("#' + myArray[x] + '_desc").hide()';
}
}
});

到目前为止,此代码不起作用。谁能帮我?谢谢。

4

1 回答 1

0

你有一些额外'的在那里。

if($("#" + myArray[x] + "_note1").text() === $.trim("0")) {
    $("#" + myArray[x] + "_desc").hide();
于 2013-10-03T15:01:36.253 回答