我使用的模式從引導如何從引導模式
<div aria-hidden="hide" aria-labelledby="myModalLabel" role="dialog" tabindex="-1" id="myModal" class="modal fade" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 id="myModalLabel" class="modal-title"></h4>
</div>
<div id="myModalBody" class="modal-body modalScroll"></div>
<div class="modal-footer">
<button data-dismiss="modal" class="btn btn-default" type="button">Close</button>
</div>
</div>
</div>
</div>
這是我的主要模式對話框趕上事件,我發送一些信息,並顯示模式,當我需要的時刻來通知用戶。但我的想法是使用這種模式來顯示圖像,當用戶選擇一個我會保存爲頭像。因此,我創建功能象下面這樣:
<script>
$('#avatar').click(function() {
showMessage();
});
$('#eee').on('click', function() {
alert('333');
});
function showMessage(){
var txto = '<div id="eee">test me test</div>';
$('#myModalLabel').append('Coose Your avatar');
$('#myModalBody').append(txto);
$('#myModal').modal('show');
}
</script>
現在,當我去頁面上,點擊DIV ID =頭像我會看到模式窗口,但是當我點擊:考我,我都沒有結果。那麼有沒有辦法做到這一點?
這個問題的答案的問題是[事件委託( http://stackoverflow.com/questions/1687296/what-is-dom-event-delegation) – 2014-08-28 22:26:07