0

在我的cshtml文件中,如果显示的不是无,我希望<td>计算。tr

<tr id="abc" style="display:none;height: 30px;">
<td class="titleStyle">Page:</td>

<td align="left">@Html.DropDownList(("pages"), 
(IEnumerable<SelectListItem>)ViewData["mypages"], new { onchange = "func()",
id = "page2",  style = "float:left; width: 276px;height: 20px;" })</td>

所以我尝试了类似的东西:

<script type="text/javascript">
   if ($("#abc").css("display") != "none") {

   }
</script>

但我怎么能从这里继续呢?

任何帮助表示赞赏!

4

1 回答 1

1

你的意思是这样的?使用window.getComputedStyle(IE9+)

HTML

<table>
    <tbody>
        <tr id="abc" style="display:none;height: 30px;">
            <td class="titleStyle">Page:</td>
        </tr>
        <tr id="abcd" style="height: 30px;">
            <td class="titleStyle">Page:</td>
        </tr>
    </tbody>
</table>

Javascript

var trs = document.getElementsByTagName("tr"),
    length = trs.length,
    i = 0;

while (i < length) {
    if (window.getComputedStyle(trs[i]).display !== "none") {
        trs[i].children[0].firstChild.nodeValue = "Page: 1";
    }

    i += 1;
}

jsfiddle 上

于 2013-06-23T15:37:11.667 回答