gpt4 book ai didi

javascript - jQuery DOM 就绪

转载 作者:行者123 更新时间:2023-11-30 07:06:48 28 4
gpt4 key购买 nike

在下面的代码片段中:

<form>
<fieldset>
<button id="indexGetStarted" class="button" type="submit">Get Started!</button>
</fieldset>
</form>
<script type="text/javascript">

$(document).ready(function() {

$('#indexGetStarted').click(function() {
$('form').submit();
return false;
});

});

</script>

$(document).ready(function() { ... } 是否必要?

最佳答案

不是绝对的,因为在执行此脚本之前您已经声明了您的按钮(然后应该是您的表单),它总是可用的。但是删除该函数会使您的代码依赖于脚本 block 和 html 元素在文档中的相对位置。

关于javascript - jQuery DOM 就绪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1845354/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com