jQuery:提交();不工作
$(function() {
$(".sendcomment").keydown(function(a) {
if (a.keyCode == 13) {
var that = $(this).attr("id");
var t = that.substr(9);
var e = "#"+t;
$(e).submit();
return false;
}
});
});
Form:
<form class="commentform" id="849" accept-charset="UTF-8">
<input type="hidden" name="comment_publication_id" id="comment_publication_id" value="849" autocomplete="off">
<textarea name="comment" id="commentto849" class="sendcomment" placeholder="Escreva seu comentário" title="Escreva um comentário para esta publicação" required=""></textarea>
</form>
的從取在MySQL具有不同ID的多次具有相同形式的多個數據。
我測試了其他頁面中的代碼沒有MySQL數據(只有1個表格),並猜測什麼?工作。
工作?所以有什麼問題? – user5173426
我不認爲你可以在表單ID中使用數字。就我所知,ID不能以數字開頭。 https://css-tricks.com/ids-cannot-start-with-a-number/ –
alert(t);看看你通過了什麼子串 – FirebladeDan