每次点击按钮时我都需要刷新div ...当我第一次按下按钮时它可以工作但不是第一次......
这是代码:
$(document).on('ready page:change', function(){
$("a").click(function(){
$("#refresh").load( "/home #content", function() {
});
});
});
答案 0 :(得分:0)
使用下面的代码。其event delegation问题。
$(document).on('ready page:change', function(){
$(document).('click','a',function(){
$("#refresh").load( "/home #content", function() {
});
});
});