What is jQuery?
jQuery is a library, or set of helpful add-ons, to the JavaScript programming language.
$(document).ready(function()) { Do something; };
$(document) is a jQuery object.
.ready() is a type of function.
function(){} is the action that .ready() will perform as soon as the HTML document is loaded.
学习资源:
http://learn.jquery.com/
时间: 2024-12-26 09:20:12