嗨,我有以下代码,有问题。
每次加载脚本时,第一个链接都会加载到div中,但是任何其他链接都不会加载到div中。
我需要在Ajax调用后重新初始化脚本。
我不是jquery或ajax的专家。我正在尝试todo将所有链接加载到div。
<div id="siteloader" style="width: 900px; height: 500px;">
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script>
jQuery(document).ready(function(){
jQuery('a').click(function(event){
event.preventDefault();
var href = jQuery(this).attr('href');
$("#siteloader").load(href);
success: initGenWidgets();
});
});
</script>
<a href='http://tired.com/'>One</a>
<a href='http://www.bbc.co.uk'>two</a>
答案 0 :(得分:0)
此代码:
$("#siteloader").load(href);
success: initGenWidgets();
应改为:
$("#siteloader").load(href, initGenWidgets);