我想在点击标签后自动提交,我使用了Jquery,但它没有用。
这是我的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>...
}
帮助,
答案 0 :(得分:0)
问题是我在表单中使用了名为“submit”的输入。
当我更改名称“submit”时,jQuery代码工作正常。