如何使用此回调函数?
我必须在函数中使用fancybox.open()
,代码如下:
enter code here:
$.fancybox.open([{href :'#up_price_box'}],{
beforeLoad: function(){/**/},
afterLoad: function(){
var apointment_id =obj.find("input[name='appointment_id']").val();
**myprice_count=setInterval(get_doctor_message,10000);**
},
afterClose :function(){
clearInterval(myprice_count);
}
});
get_doctor_message
是一个函数
myprice_count=setInterval(get_doctor_message,10000,apointment_id,obj);
这个代码使得该功能无效,
afterLoad: function(){
var apointment_id =obj.find("input[name='appointment_id']").val();
myprice_count=setInterval(get_doctor_message,10000);
},
谁能帮助我,非常感谢!
enter code here<div id='up_price_box'style="display:none">/**/</div>