我正在使用 jQuery mobile、javascript 和 php 开发登录系统。在我刷新页面之前,以下代码似乎不会运行。我该如何解决这个问题?
$(document).ready(function(){ alert('hello')};
我正在使用 jQuery mobile、javascript 和 php 开发登录系统。在我刷新页面之前,以下代码似乎不会运行。我该如何解决这个问题?
$(document).ready(function(){ alert('hello')};
您并没有真正付出足够的努力,但准备好的功能不会在页面上运行的唯一原因是页面没有完全加载,因此没有“准备好”。真的,我们需要查看更多页面代码来帮助您。
此外,您缺少一个肯定会导致问题的右括号。
$(document).ready(function(){
alert('hello');
});
jQuery Mobile 相当基础,但您不能使用它$(document).read();
:
$(document).bind("pageinit", function() {
alert('hello');
});