-2
を使用しては..私は私はそれが1つのモーダルポップアップを開くボタンをクリックするとボタンは、ユーザーの何と呼ばれていないjqueryのモーダルポップアップ
をフォームを送信するので、私は何をしようとしていますが、私はトンインサートをしようとしていますモーダルポップアップであります一つのフィールドを持つフォーム彼らは私がデータベースここ
にそれらの値を格納したい提出クリックしたときにnumber..andを入力するには、私のボタンのコードです:ここ
<button type="button" class="btn btn-success"style="float:right; margin:3px 0px 3px 3px" id="btnShow">No Of Users</button>
は私のモーダルdailogコードです:
<script type="text/javascript">
$(function() {
$("#btnShow").click(function(){
$('#demoModal').modal('show');
});
});
<div style="text-align:center; margin-top:10%"></div>
<div class="modal fade" id="demoModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Bootstrap Modal Popup</h4>
</div>
<div class="modal-body">Hi, Welcome to Aspdotnet-Suresh.com</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
は、誰もが最初にあなたのモーダルポップアップフォームとAjaxを作成する必要が
事前に感謝..については
ここではmodalpopupが来ていません。モーダルポップアップコードを追加してください。 – user200
モーダルポップアップフォームの代わりにフォーム部分を追加しました。これは説明的なコードであり、プログラム全体ではありません。 –
私は自分のフォームのコードをあなたのモダルコードで編集しています。 –