我有一个对话框 -
<div data-role="dialog" id="msg-popup">
<div data-role="header">
<h1>Notification</h1>
</div>
<div data-role="content" id>
<b id="notif-subject"></b>
<a href="#notif-details1" id:"show-notif" data-role="button">Show notification</a>
<a href="#" data-rel="back" data-role="button">Cancel</a>
</div>
</div>
我想使用 jquery 代码动态隐藏和显示 show-notif 按钮。我该怎么做?
我试过了
$("#show-notif").hide();
这对我不起作用。有任何想法吗?