我有一個表單,我試圖在fancybox(www.fancybox.net)內提交。如果我直接轉到表格,它會提交罰款。但是,如果我在頁面內部加載表單,我想從窗體調用fancybox不會提交,fancybox消失,頁面刷新。我已經嘗試了fancybox和facebox到同一個問題..下面是我已經在主頁中的所有JQuery代碼。此頁面打開fancybox並在後面提交表單。該表格是爲了顯示一個感謝消息從窗口時,它提交刷新頁面,而不是..任何幫助深表感謝:jQuery表單提交問題
的JavaScript:
$(document).ready(function() {
$("#various1").fancybox({
'opacity': true,
'overlayShow': false,
'transitionIn': 'none',
'autoscale': 'false',
'transitionOut': 'none'
});
$("submit").submit(function() {
alert('it submits');
// we want to store the values from the form input box, then send via ajax below
var name = $('#name').attr('value');
var email = $('#email').attr('value');
var password = $('#password').attr('value');
var custom1 = $('#custom1').attr('value');
var custom2 = $('#custom2').attr('value');
var custom3 = $('#custom3').attr('value');
var custom4 = $('#custom4').attr('value');
var custom5 = $('#custom5').attr('value');
var custom6 = $('#custom6').attr('value');
var custom7 = $('#custom7').attr('value');
var custom8 = $('#custom8').attr('value');
var custom9 = $('#custom9').attr('value');
var custom10 = $('#custom10').attr('value');
$.ajax({
type: "POST",
url: "test.php",
data: "name=" + name + "& email=" + email + "& password=" + password + "& custom1=" + custom1 + "& custom2=" + custom2 + "& custom3=" + custom3 + "& custom4=" + custom4 + "& custom5=" + custom5 + "& custom6=" + custom6 + "& custom7=" + custom7 + "& custom8=" + custom8 + "& custom9=" + custom9 + "& custom10=" + custom10,
success: function() {
$('submit').fadeOut(function() {
$('div.success').fadeIn();
});
}
});
return false;
})
; });
鏈接形式:
<a id="various1" href="register.php">
我沒有看到實際的代碼中的錯誤,其中的工作示例的鏈接去了哪裏? – Valerij 2011-03-16 00:35:46
你不應該使用'.attr('value')' - jQuery擁有'.val()'是有原因的。另外,http://jsbeautifier.org/在發佈代碼之前格式化代碼是一件好事。 – ThiefMaster 2011-03-16 00:38:36