0
Simplemodal完美工作,但我不知道如何在提交表單後自動關閉Iframe。 我試圖用JS來獲取模式選項之外的事件,但 如果關閉提交事件,表單不會提交模態窗口...提交後關閉iframe表單?
我還添加了類simplemodal關閉到輸入按鈕,但它的工作形式?
有什麼建議? 這裏是我的代碼
//模態窗口
modal.click(function(e){
e.preventDefault();
$.modal('<iframe src="' + this.href + '" height="480" width="525" style="border:0" >',{
containerCss:{
backgroundColor:"#fff"
},
overlayClose:true,
onShow: function (dialog) {
$("input",dialog.data).click(function (e) {
e.preventDefault();
alert('Here'); //Doesnt execute
$.modal.close();
parent.$.modal.close();
alert('Here');
});
}
});