我有最新的Fancybox,我只想用Fancybox中的Button更新Ajax Fancybox的内容。 Fancybox中有没有重新加载内容的方法?
答案 0 :(得分:0)
$('#button').click(function(){
$.ajax({
data:
{
//whatever you need to send back to the server
//this could be the id of the element to refresh
},
url: 'your_url_to_send_it_to'
cache: false,
type: 'POST',
success: function (result) {
//update the element with result
}
})
});
我在id为“button”的按钮上写下了一个非常简单的ajax调用。这正是您刷新Fancybox元素所需的。在Fancybox本身中没有一种方法可以用来执行此操作,您必须编写自己的ajax调用。希望我有所帮助。