1. Home
  2. /
  3. Web technology
  4. /
  5. Bootstrap
  6. /
  7. [ Bootstrap ] –...

[ Bootstrap ] – modal 動態傳值

評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 2,平均評等: 5]

因為要利用 modal 動態的編輯資料,這時候就需要動態傳值,上網爬文了好多方法後來找到一個最簡單的方式實作一下可以運行。

table 部份

<button type="button" class="btn btn-primary btn-sm" name="update" alt="<?php echo $row['code'];?>">編輯</button>

modal 部份

<div class="modal fade" id="myModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">警告</h4>
</div>
<div class="modal-body">
<p class="pull-left text-left"><i class="fa fa-exclamation-triangle fa-5x text-danger" aria-hidden="true"></i></p>
<div class="modal-footer">
<input type="hidden" id="parameter" value="" />
<button type="button" class="btn btn-default" data-dismiss="modal" onclick="javascript:alert($('#parameter').val());">確定</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->

javascript 部份

$("button[name=update]").click(function(){
var aa = $(this).attr('alt');
$("#parameter").val(aa);
});

評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 2,平均評等: 5]

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *