Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 address.change 事件使用 JQuery 地址插件,问题是此事件发生在文档完全加载之前(在 FireFox 和 safari 中)
我怎样才能等待它加载?
谢谢。
$(document).ready(function() { // put your address.change event and function here });
这是一个更短的方法:
$(function() { // code here });