这是我的代码..
<div id="hint-toggle" class="ui-body ui-body-e" style="display: none">
<p>No Hints available right now,check it later</p>
</div>
<button id="show-hint" onclick="showHint();"type="submit" data-inline="true" data-theme="c">Show Hint</button>
<script type="text/javascript">
function showHint(event){
$("#hint-toggle").toggle();
}
</script>
单击show hint
按钮后,它会出现,但会在 2 秒内消失。我是否遗漏了代码中的任何内容?请帮助我。我想显示hint-toggle
,直到我再次按下show hint
按钮。
仅供参考:http: //jsfiddle.net/shreeramns/rUKbh/