这可能很容易,但搜索时我没有找到任何东西, 我需要在叠加层上刷新父级。 任何帮助深表感谢。
感谢Jcolebrand,这是有效的
$("a.help[rel]").overlay({
effect: 'apple',
onClose: function(){
window.location.reload(true);
},
onBeforeLoad: function() {
// grab wrapper element inside content
var wrap = this.getOverlay().find(".contentWrap");
// load the page specified in the trigger
wrap.attr('src', this.getTrigger().attr("href"));
}
});
答案 0 :(得分:3)
谢谢Jcolebrand,
$("a.help[rel]").overlay({
effect: 'apple',
onClose: function(){
window.location.reload(true);
},
onBeforeLoad: function() {
// grab wrapper element inside content
var wrap = this.getOverlay().find(".contentWrap");
// load the page specified in the trigger
wrap.attr('src', this.getTrigger().attr("href"));
}
});