真的不熟悉jQuery。無論如何,我可以使用jQuery將表單數據傳遞給PHP文件嗎?通過jQuery將變量傳遞給PHP文件
FORM:
<div id="dialog-form" title="Fill in your details!">
<form>
<fieldset>
<label for="name">Name</label>
<input type="text" name="name" id="name"/>
<label for="email">Email</label>
<input type="text" name="email" id="email" value=""/>
<label for="phone">Phone</label>
<input type="phone" name="phone" id="phone" value=""/>
</fieldset>
</form>
這是與jQuery彈出對話框,並獲取與提交:
$("#dialog-form").dialog({
autoOpen: false,
height: 450,
width: 350,
modal: true,
buttons: {
"Sumbit": function() {
//VALIDATES FORM INFO, IF CORRECT
if (Valid) {
$.ajax({
url: 'process-form.php',
success: function (response) {
//response is value returned from php
$("#dialog-success").dialog({
modal: true,
buttons: {
Ok: function() {
$(this).dialog("close");
}
}
});
}
});
$(this).dialog("close");
}
}
}
});
我想要做的就是發送表單數據的用戶輸入process-form.php
,在那裏它將被處理並作爲電子郵件發送(我可以這樣做)。只是不確定在事情的jQuery方面。它甚至有可能嗎?
可能重複的[jQuery的POST形式數據](http://stackoverflow.com/questions/5772839/jquery-post-form-data)等許多其他... :-) –
明白了,謝謝你們。 ^首先明顯地看過其他問題。如果我不太瞭解代碼,那麼我真的不知道這是我需要與否。 – user1410070