是否可以在不刷新页面的情况下提交此php表单。我将如何设置可以执行此操作的jquery代码。
<?php
if(!isset($_POST['sthis']))
{
?>
<div id="show">
<form method="post" action="">
something<input name="sthis" type="text" id="sthis" />
<input name="s" type="submit" value="submit" id="submit" />
</form>
</div>
<?php
}
else
{
if(isset($_POST['sthis']))
$sthis = $_POST['sthis'];
if(empty($sthis)){echo 'put something in this box';}
else echo 'ready';
}
?>
答案 0 :(得分:1)
你需要ajax:
$.ajax({ type: "POST", url: "your url here", data: "sthis=someValue", success: function(response) { alert(response); } });
希望有所帮助
答案 1 :(得分:1)
这是如何使用jQuery:
<强> HTML 强>
<form id="frmSample">
...
</form>
<div id="divResult"></div>
<强> JQuery的强>
$(function(){
$("#frmSample").submit(function(){
//some code here
$("#divResult").load("yourPhpCode.php", {variableName: value, variableName1: value});
});
});