-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 に答える