如何更改jquery加载函数以使用jquery.on将php页面加载到div中 现在我将diferents php页面加载到“模态”div使用.load但不同的php页面调用jqueryui datepicker当我将内容更改为div datepicker函数停止工作。我认为问题是在.load函数然后我认为如果我将其更改为.on方法它将工作,但我不知道如何使用.on方法将href加载到div
//$("#flotante").fadeIn(1000).load(href); // load content into the div
$("#flotante").on( 'load' , function() // i want to load with .on method
{
});
答案 0 :(得分:0)
Jquery .load函数与.on load事件不同。您需要以下内容:
$("#flotante").on( 'load' , function() // i want to load with .on method
{
$.ajax({url : 'index.php', type : "get", dataType : "html" , success : function(data){
$("#flotante").html(data);
}});
});