我正在使用HTML5。我喜欢隐藏一个按钮 我使用以下内容:
$('#butt1').hide();
<button id="butt1">Button1</button>
知道为什么它可能不适用于HTML5
答案 0 :(得分:1)
把它放在:
之间$(document).ready(function(){
//....My blah di blah
$('#butt1').hide();
//....My other stuff
});
顺便说一句,你的问题与Html 5无关。
答案 1 :(得分:0)
<script>
标记移至标记中的<button>
标记后。答案 2 :(得分:0)
你的jQuery需要在脚本标签中。