-1

如何隐藏带有 ID 的 DIV 并且 ID 有 2 个类?(代码如下)

<div id="ship" class="block">

#ship, #Payment {width:360px;float: left; margin-right:10px;}

#ship .subhead, #Payment .subhead {margin-top: 10px; margin-bottom: 5px;}

#ship table, #Payment table, #updatePanel2 table {width:100%;} 
4

1 回答 1

1

如果您想选择一个同时具有这两个类的元素,那么只需像这样将它们链接起来。

$('#ship.block.subhead').hide();

请注意,id 和任何类之间没有空格。

于 2013-11-07T17:35:19.747 回答