jQueryを使用して頭や列を非表示にする必要があります。以下のコードは動作しません。頭と柱を隠すには?
$('#MD116139889_ZIPCODE_InputField').find('.input-group-addon').click(function(){
$('.116141670_ZIPCODE_IDPopupHead').hide();
$('.116141670_ZIPCODE_IDPopupCol').hide();
});
<div id="MD116139889_ZIPCODE_dialog" class="ui-dialog-content ui-widget-content" style="width: auto; min-height: 76px; max-height: none;">
<div id="popUpContentResult" class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th width="30%" height="19" class="text-center 116141670_ZIPCODE_IDPopupHead">ZipId</th>
<th class="text-center 116141670_ZIPCODEPopupHead">Zip Code</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center" class="text-center 116141670_ZIPCODE_IDPopupCol"><a href="Javascript:selectitem0();">00196</a></td>
</tr>
</tbody>
だから、最初、それらの要素がページ上に存在することを確認してください。 console.log($( 'aselector')。length); 'このクリックハンドラで、コンソールに何かが見つかったかどうかを確認することができます。見るためのマークアップを提供することなく、デバッグの提案が残っています。 – Taplar
関連するHTMLを表示してください。 – Teemu
@Taplarそれは何を意味するのですか? – midtonight