如何使用此回调函数?
我不得不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>