0

我正在使用 jQuery mobile、javascript 和 php 开发登录系统。在我刷新页面之前,以下代码似乎不会运行。我该如何解决这个问题?

$(document).ready(function(){ alert('hello')};
4

2 回答 2

3

您并没有真正付出足够的努力,但准备好的功能不会在页面上运行的唯一原因是页面没有完全加载,因此没有“准备好”。真的,我们需要查看更多页面代码来帮助您。

此外,您缺少一个肯定会导致问题的右括号。

$(document).ready(function(){ 
    alert('hello');
});
于 2013-01-09T04:56:48.140 回答
0

jQuery Mobile 相当基础,但您不能使用它$(document).read();

$(document).bind("pageinit", function() {
    alert('hello');
});

http://jquerymobile.com/demos/1.2.0/docs/api/events.html

于 2013-01-09T05:11:14.140 回答