jQuery AJAX 提交表单
2022-08-29 22:06:56
我有一个带有名称和未定义输入数量的表单。orderproductForm
我想做某种jQuery.get或ajax或类似的东西,通过Ajax调用页面,并发送表单的所有输入。orderproductForm
我想一种方法是做这样的事情
jQuery.get("myurl",
{action : document.orderproductForm.action.value,
cartproductid : document.orderproductForm.cartproductid.value,
productid : document.orderproductForm.productid.value,
...
但是,我并不完全知道所有表单输入。是否有功能,功能或仅发送所有表单输入的东西?