我有一个表单,它从表单中获取名称,它发送到 javascript 代码并通过 Ajax 在 php 中显示。这些操作是通过单击提交按钮完成的,我需要另一个按钮,作为我的主页中的评论。我如何处理在 process.php 页面中有“if isset(submit)”或“if isset(review)”的 ajax?单击每个按钮时,我需要执行不同的 sql 操作。如何添加另一个按钮并能够对 process.php 页面中的 php 部分执行不同的操作?
<script type="text/javascript">
$(document).ready(function(){
$("#myform").validate({
debug: false,
submitHandler: function(form) {
$.post('process.php', $("#myform").serialize(), function(data) {
$('#results').html(data);
});
}
});
});
</script>
<body>
<form name="myform" id="myform" action="" method="POST">
<label for="name" id="name_label">Name</label>
<input type="text" name="name" id="name" size="30" value=""/>
<br>
<input type="submit" name="submit" value="Submit">
</form>
<div id="results"><div>
</body>
进程.php:
<?php
print "<br>Your name is <b>".$_POST['name']."</b> ";
?>