从表单中获取所有值并通过Ajax将其发送到页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从表单中获取所有值并通过Ajax将其发送到页面相关的知识,希望对你有一定的参考价值。
Here’s a super handy snippet that I use very often. It works very simply: once the user clicks on #submit, the data from #form is serialized and sent to a remote page using the POST method.
jQuery( document ).ready(function() { jQuery( "#submit" ).click(function() { .done(function( data ) { alert(data); }); return false; }); });
以上是关于从表单中获取所有值并通过Ajax将其发送到页面的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 jquery 获取页面上的值并使用 php 将其回显到页面上
从表单收集数据,在对象中堆叠并使用 Vue 使用 AJAX 发送