ロード時にページに表示される div があります。この div にボタンを追加しました。ユーザーがこのボタンをクリックすると、JQuery を使用して div が非表示になります。
html は次のとおりです。
<div id="tabs" class="news1">
<ul>
<li><a href="#tabs-1">Track</a></li>
<li><a href="#tabs-2">History</a></li>
</ul>
<div id="tabs-1">
<table id="currentloc_table">
<tr>
<th></th>
<th>Name</th>
<!--th>Latitude</th>
<th>Longitude</th-->
<th>Details</th>
</tr>
<tr><td></td></tr>
</table>
</div>
<div id="tabs-2">
</div>
<button>hide</button>
</div>
同じページのタグ内のスクリプトは次のとおりです。
<script>
$(function() {
$( "#tabs" ).tabs();
});
$("button").click(function() {
$(this).parent().hide();
});
</script>
しかし、何らかの理由でそれが機能しません。助言がありますか?
ありがとう。