為什麼這篇form表單鄉民發文收入到精華區:因為在form表單這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者james999 (無傷大雅)看板Web_Design標題[問題] form表單沒有action...
form表單 在 Yangyi。楊衣 Instagram 的精選貼文
2021-08-16 21:55:17
July's Patreon VIP Tier is Goddess of beauty - Aphrodite form Record of Ragnarok If you want to get more Aphrodite form Record of Ragnarok Remember to...
最近接手網頁專案,但看到form表單沒有action,
請問該如何知道按下submit後表單是呼叫什麼方法呢?
謝謝。
<form class="form-signin" id="form-signin" role="form">
.
.
省略
.
.
<button type="submit" class="btn btn-lg btn-danger btn-block ladda-button"
data-style="expand-left">Sign In</button>
</form>
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 1.169.207.174
※ 文章網址: https://www.ptt.cc/bbs/Web_Design/M.1519041672.A.FD0.html
用x大的方法找到一個.js檔,
其中有個ajax內容是…
$.ajax({
url: curl,
type: 'POST',
data: $form.serialize(),
dataType:"json",
success: function(r) {
if(r.ok=='1') document.location=r.redirect;
else {
$('#form-signin input[name="pass"]').val('');
if(r.user!='') fv.updateMessage('user', 'blank',
r.user).updateStatus('user', 'INVALID', 'blank');
if(r.pass!='') fv.updateMessage('pass', 'blank',
r.pass).updateStatus('pass', 'INVALID', 'blank');
}
}
});
找到curl變數,確認了方法為index_ajax,
後來又發現https://imgur.com/a/NUOMv,
找不到方法,看來是路徑錯了!!
目前index_ajax方法是位於controller資料夾下的Login.php檔,
我該如何讓Login.php的index_ajax方法符合路徑呢?
專案是用xampp,php後端的程式碼,謝謝。
※ 編輯: james999 (1.169.207.174), 02/20/2018 20:59:14
問題已解決了,修改.htaccess內定義的路徑。
Options -Indexes
RewriteBase
謝謝各位解惑^^
※ 編輯: james999 (1.169.207.174), 02/21/2018 00:55:56