0
頁面
這是我的html代碼,當我點擊提交按鈕會顯示警告,然後當我打開retrieveform.php它不顯示我的價值,請解開這個謎如何提交表單而無需刷新
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(function() {
$('form').on('submit', function (e) {
e.preventDefault();
$.ajax({
type: 'post',
url: 'retrieveform.php',
data: $('form').serialize(),
success: function() {
alert('helllo');
}
});
});
});
</script>
</head>
<body>
<form>
<input type="text"name="t1">
<input type="submit"name="s1"value="submit">
</form>
</body>
</html>
和我retrieveform.php是
<?php
if($_POST['t1'])
{
echo $_POST['t1'];
}
else
{
echo "hekllojjio";
}
?>
謝謝你的答案,但我怎樣才能得到輸入文本字段的值,當我想動態生成輸入字段的表單並提交按鈕的同名 – user3610919
後續問題似乎打開了一個蠕蟲的信息不足,回答問題。你必須更具體。 – Silvertiger
以及如何知道哪個提交按鈕被按下哪個表單並獲得該特定的輸入字段值 – user3610919