ホームページ > 記事 > ウェブフロントエンド > jquery submit が送信されない場合はどうすればよいですか?
jquery submit が送信されない場合の解決策: 1. 対応するフォーム コード ファイルを開きます; 2. ボタンの種類を送信に変更します; 3. ボタン ID を変更します。
この記事の動作環境: Windows7 システム、jquery バージョン 3.2.1、DELL G3 コンピューター
どうすればよいですかif jquery submit doesn't submit?
jquery submit() がフォームを送信できない問題の解決策
今日フォーム送信を書いたときに、確認プロンプトを追加する必要があったので、送信ボタンを使用せずに送信しました。変更します。jq の submit() を使用すると、問題が発生します。
<form class="form-horizontal m-t" method="post" action="@Url.Action("Edit")" id="form"> <div class="row"> <div class="col-sm-12"> <div class="ibox float-e-margins"> <div class="ibox-title"> <h5>添加</h5> </div> <div class="ibox-content"> <div class="form-group"> <label class="col-sm-3 control-label">开始时间:</label> <div class="col-sm-8"> <span> @(Model.annualRate_beginDate?.ToString("yyyy-MM-dd")) </span> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">结束时间:</label> <div class="col-sm-8"> <input type="text" class="form-control" name="annualRate_endDate" id="annualRate_endDate" onclick="laydate({ istime: false, format: 'YYYY-MM-DD' })" value="@Model.annualRate_endDate.ToString("yyyy-MM-dd")" required> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">年利息%:</label> <div class="col-sm-8"> <input type="number" step="0.01" class="form-control" id="annualRate_rate" name="annualRate_rate" value="@Model.annualRate_rate.ToString("#0.00")" required> </div> </div> <div class="form-group"> <div class="col-sm-4 col-sm-offset-2"> <button class="btn btn-lg btn-primary" id="submit_btn" type="button"> 提交 </button> <a class="btn btn-lg btn-white" href="@Url.Action("Index")"> 取消 </a> </div> </div> </div> </div> </div> </div> </form>
1 <script type="text/javascript"> 2 $(function () { 3 $("#submit").click(function () { 4 var start = '@(Model.annualRate_beginDate?.ToString("yyyy-MM-dd"))'; 5 var end = $("#annualRate_endDate").val(); 6 var val = $("#annualRate_rate").val(); 7 layer.confirm('请确认所填写的信息是否正确?<br/>开始时间:' + start + '<br/>结束时间:' + end + '<br/>年利率:' + val, { icon: 3, title: '提示' }, function (index) { 8 $("#form").submit(); 9 layer.close(index); 10 }); 11 }); 12 }) 13 </script>
送信ボタンをクリックすると、確認プロンプトが表示されます, しかし、確認後は応答がありません
##しかし、ボタンの種類を送信に変更すると、再度送信できるようになりますそこで、jQuery APIに行って理由を調べたところ、すぐに次のテキストを見たときに理解しました:Additional Notes: Forms and their child elements should not use input names or ids that conflict with properties of a form, such as submit, length, or method. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see DOMLint.これはおそらく、フォームとそのサブ要素がフォームの属性を名前や ID として使用すべきではないことを意味します。名前 (submit、length、method など)など、そうしないと競合が発生し、名前の競合がこの状況を引き起こす可能性があります。 ボタン ID が submit に設定されていることが判明しました。ID を変更すれば問題ありません。推奨学習: "
jqueryビデオチュートリアル 》
以上がjquery submit が送信されない場合はどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。