是的,您在这里需要Ajax。请参阅下面的代码以获取更多详细信息。
像这样更改您的标记
<input type="submit" name="insert" value="insert" /><input type="submit" name="select" value="select" />
jQuery的:
$(document).ready(function(){ $('.button').click(function(){ var clickBtnValue = $(this).val(); var ajaxurl = 'ajax.php', data = {'action': clickBtnValue}; $.post(ajaxurl, data, function (response) { // Response div goes here. alert("action performed successfully"); }); });});
在ajax.php中
<?php if (isset($_POST['action'])) { switch ($_POST['action']) { case 'insert': insert(); break; case 'select': select(); break; } } function select() { echo "The select function is called."; exit; } function insert() { echo "The insert function is called."; exit; }?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)