我需要動態更新內容每隔幾秒鐘,而不重新加載頁面,所以我認爲使用jquery load()函數,這加載內容很好,但不是從頭標記的js或jquery文件。jQuery和js文件未加載?
下面是示例代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{$PAGE_TITLE}</title>
<link rel="stylesheet" type="text/css" href="../web/css/style.css" />
<script type="text/javascript" src="../web/js/jquery-1.3.2.min.js" ></script>
<script type="text/javascript" src="../web/js/wz_tooltip.js"></script>
<script type="text/javascript" src="../web/js/tip_centerwindow.js"></script>
<script type="text/javascript" src="../web/js/tip_balloon.js"></script>
<script type="text/javascript">
{literal}
$(document).ready(function() {
setInterval(function(){
$("#content").load("load_contents.php");
},20000);
......
});
{/literal}
</script>
</head>
<body>
<div class="content">
</div>
</body>
</html>
推薦我的解決方案...
更新:工具提示的js沒有加載,Y ...
所以...你想「重新加載」jquery文件?這似乎沒有必要... – 2010-10-15 12:22:26
這可以幫助http://stackoverflow.com/questions/889967/jquery-load-call-doesnt-execute-javascript-in-loaded-html-file – 2010-10-15 12:23:41
你的17個問題中的16個已被回答,但你只接受了其中4個答案。修復。 – 2010-10-15 12:29:52