我正在尝试在表单的提交按钮上调用 jquery ajax 函数。我的表格是树枝的形式,我没有提到任何动作,因为我想做一个 ajax 调用。
<label for="email">Email</label>
<input type="text" name="username" value="" />
<label for="email">Password</label>
<input type="password" name="password" value="" />
<input type="submit" name="action" id="login" value="login" />
我的 js 看起来像这样:
$("#login").click(function(event) {
var posting = $.post(http://domain-name/api/login, $('#mainform').serialize(), function(data,status) {
if(status == 'success'){
当我单击提交按钮时,它不会重定向到此 url。相反,它需要相对 url 并尝试找出未定义的 app->post('/login') 的路径。
我不明白为什么它不调用 js 函数。