-1
我想在點擊標籤後自動提交,我用Jquery,但它沒有工作。在Razor自動提交表格
這是我的jQuery代碼:
<script type="text/javascript">
$("#tt").click(function() {
$("#demo-form2").submit();
});
當T使用提醒功能,它工作正常測試:
<script type="text/javascript">
$("#tt").click(function() {
alert("Bye! You now leave p1!");
});
TT是標籤的ID我點擊 這是剃鬚刀代碼:
@using (Html.BeginForm("Index2", "Commande", FormMethod.Post, new { @class = "form-horizontal form-label-left", role = "form", @id = "demo-form2" }))
{
@Html.ValidationSummary(true)
<table>
<tr>
<th id="tt">
Code Article
</th>
</tr>...
}
幫助,
一些html請嗎? – Satpal
是你的表單的正確ID嗎?你能分享其餘的代碼嗎?如果這是你的頁面中唯一的表單,你可以試試$('form')。submit(); – Nikitesh
正確檢查表單ID! – Poria