1
誰能告訴我爲什麼下面的代碼無法將表單提交到彈出窗口? 在鏈接的點擊應提交表單到一個彈出jquery鏈接失敗彈出提交表格
$(".myClass").click(function()
{
var myVar = $(this).attr("rel");
//$(this).closest("form").submit();
$("#form_id"+myVar).submit(function()
{
window.open('', 'formpopup', 'width=700,height=550,resizeable,scrollbars');
this.target = 'formpopup';
});
return false;
})
如果我刪除彈出選項和剛纔的$(本).closest(「形式」)提交()。有用。 但是,它是失敗的。 有什麼想法/建議嗎? 螢火蟲沒有js錯誤。
注:目前我們不想使用模態窗口 - 所以請不要模態建議。
感謝這有所幫助。 – andrew
@andrew - 沒問題,很高興我能幫忙:) –