如何解决jQuery在刷新页面之后才运行的问题?

时间:2013-01-09 04:52:35

标签: php javascript jquery ajax jquery-mobile

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

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

2 个答案:

答案 0 :(得分:3)

你并没有给予足够的支持,但是就绪功能不会在页面上运行的唯一原因是页面没有完全加载,因此不准备就绪。"实际上,我们需要查看更多页面代码来帮助您。

此外,你错过了一个肯定会引起问题的右括号。

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

答案 1 :(得分:0)

jQuery Mobile相当基础,你无法使用$(document).read();而是:

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

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