在Jquery ajax中加载页面后刷新DIV

时间:2012-07-10 10:00:15

标签: jquery

如何在页面加载时使用jquery ajax刷新或重新加载div

2 个答案:

答案 0 :(得分:1)

查看此代码。实际上,它是使用$.load()

完成的
<!DOCTYPE html>
<html>
<head>
  <style>
 body{ font-size: 12px; font-family: Arial; }
 </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>

<b>Footer navigation:</b>
<ol id="new-nav"></ol>

<script>
  $("#new-nav").load("/ #jq-footerNavigation li");
</script>

</body>
</html>

此代码有助于加载Div

中默认页面的下方导航

查看此Link

答案 1 :(得分:0)

$(document).load(function() {
   $("#elementID").load('/path/to/remoteFile');
});