vue 解决form表单提交但不跳转页面的问题

vue使用@submit.prevent=""来设置提交时执行的函数,并阻止页面跳转:

<form id="msgForm" action="" method="post" @submit.prevent="sub">

sub函数写在methods内:

methods:{

$.post('http://api.test.ai/visitorinfo/', $('#msgForm').serialize(), function(data){

console.log(data);

})

}

以上这篇vue 解决form表单提交但不跳转页面的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

以上是 vue 解决form表单提交但不跳转页面的问题 的全部内容, 来源链接: utcz.com/z/362105.html

回到顶部