如果我有 index.html 和一个转到 map.html 的按钮,什么可以使用监听器来加载完整的页面 map.html 那么在 map.html 上使用 JavaScript 吗?
问问题
148 次
2 回答
0
// This gets called by jQuery mobile when the page has loaded
$(document).bind("pageload", function(event, data) { init(data.url); });
// Set an onload handler to call the init function
window.onload = init;
于 2013-04-12T14:55:53.923 回答
0
如果您使用纯 JavaScript,则可以依赖“加载”事件。
如果你使用 jQuery,你可以依赖 ready 事件。
于 2013-04-11T20:00:25.223 回答