admin管理员组文章数量:1346189
In the following code snippet:
<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>
Is $(document).ready(function() { ... }
necessary?
In the following code snippet:
<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>
Is $(document).ready(function() { ... }
necessary?
4 Answers
Reset to default 9Not absolutely, since you have declared your button (and then supposedly your form) before this script is being executed, it'll always be available. but removing that function would make your code dependent on where in the document the script block and the html elements are, in relation to one another.
Yes, It is required for writing clean code, but it has a shortcut:
$(function() { .... });
// is the same as
$(document).ready(function() { .... });
The behavior of manipulating DOM objects, attaching events, etc before the DOM Objects have fully loaded will be unpredictable, and often not work at all.
It might work if the elements are declared before the script portions load.
Strictly speaking, it is always necessary if you access DOM elements in the enclosed code. $(document).ready()
delays the execution of the code until the DOM tree is fully built, which is important, as you access the DOM tree via $('#indexGetStarted')
. Practically, it will probably work anyway, but I would not remend it.
No, it's not needed. If you place scripts after the DOM elements in the source, the elements are naturally available. Some tests shows that this will speed up rendering, especially in IE.
You can bind stuff to the 'ready' event earlier in the markup and then run $.ready()
before closing the body with the same effect.
本文标签: javascriptjQuery DOM ReadyStack Overflow
版权声明:本文标题:javascript - jQuery DOM Ready - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824449a2545379.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论