2

我的 bootstrap popover 有问题。我有一个按钮,当我点击它时,它会显示一个表单。在一个表单中有一个按钮,我想当我点击它时,它会提醒一些东西。但是当我点击它时,它不会提醒任何东西。我不知道为什么它不起作用,你能帮我吗?谢谢大家!

<script src="//code.jquery.com/jquery.js"></script>
	<!-- Latest compiled and minified CSS & JS -->
	<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
	<script>
		$(document).ready(function() {
		  $('#form_popover #ok').click(function(){
		  		alert("hi");
		  });
		  $('.btn-open-popover').popover();

		  // //popover option
		  $("#a-popover").popover({
		    title: 'Dang ki thong tin',
		    content: $('#divContentHTML').html(),
		    placement: 'right',
		    html: true
		  }); 
		});
	</script>
<link rel="stylesheet" media="screen" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
	<div class="col-xs-5 col-sm-5 col-md-5 col-lg-5">
		<a href="#" class="btn btn-default" id="a-popover">Click!</a>
        <div id="divContentHTML" style="display:none">
         <form method="post" id="form_popover">
          	<div class="form-group form-inline kc">
          		<label for="">Name</label>
          		<input type="text" class="form-control" id="user" placeholder="Input field">
          		<label for="">Email</label>
          		<input type="text" class="form-control" id="email" placeholder="Input field">
          	</div>
          	<button type="button" id="ok" class="btn btn-primary">OK</button>
          </form>
        </div>
	</div>

4

2 回答 2

4

由于此按钮是动态加载(或重新初始化)的,因此您应该使用委托事件处理程序。例如:

$(document).on('click', '#ok', function()
{
    alert("hi");
});

小提琴

或者使用 static 更好一点<div class="col-xs-5 col-sm-5 col-md-5 col-lg-5">

$('.col-xs-5').on('click', '#ok', function()
{
    alert("hi");
});

小提琴

于 2014-10-17T05:24:30.197 回答
1

您可以将事件委托用于动态生成的元素

  $(document).on('click', '#ok',function(){
            alert("hi");
 });

演示

于 2014-10-17T05:24:23.443 回答