使用jQuery发布表单(Ajax)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery发布表单(Ajax)相关的知识,希望对你有一定的参考价值。
This send any value via POST to a php page. It is done with AJAX, so the POST return can be used on the same page as the submit
// On click "button.submit" $("button#submit").click(function () { // Send to submit.php $.post("controller/submit.php", { // Send these values via POST val1: $("#val1").val(), val2: $("#val2").val() }, function(result){ // Return result }); });
以上是关于使用jQuery发布表单(Ajax)的主要内容,如果未能解决你的问题,请参考以下文章
将 Bootstrap validator.js 与 Jquery ajax 表单发布一起使用
如何使用 jquery/ajax 正确刷新包含表单的 div?