javascript - Callback when we use data-target in bootstrap - Stack Overflow

I am working with a single page application, There are some buttons whichwhich opens this modal throu

I am working with a single page application, There are some buttons which which opens this modal through data-target.

I need to hit an API when this "MODAL" opens up on screen through any of the button clicks. (There are multiple buttons which could open this modal)

One very messy way would be to attach an onclick event to every button. Could anyone suggest me a cleaner way to acplish this in which I could probably attach some kind of event handler to the modal?

here is the messy solution of my problem

<a data-target="#SomeModal" data-toggle="modal" href="#">
<button class="btn btn-success btn-lg" onclick="function_api_call();">
Click me</button>
</a>

I am working with a single page application, There are some buttons which which opens this modal through data-target.

I need to hit an API when this "MODAL" opens up on screen through any of the button clicks. (There are multiple buttons which could open this modal)

One very messy way would be to attach an onclick event to every button. Could anyone suggest me a cleaner way to acplish this in which I could probably attach some kind of event handler to the modal?

here is the messy solution of my problem

<a data-target="#SomeModal" data-toggle="modal" href="#">
<button class="btn btn-success btn-lg" onclick="function_api_call();">
Click me</button>
</a>
Share Improve this question asked Jun 1, 2015 at 14:08 Namit SingalNamit Singal 1,51612 silver badges26 bronze badges 1
  • jQuery: $('.btn.btn-success').on('click', function_api_call); – lshettyl Commented Jun 1, 2015 at 14:13
Add a ment  | 

2 Answers 2

Reset to default 13

You can listen to the modal show event :

$('#SomeModal').on('show.bs.modal', function (e) {
    // do something...
})

It will be called each time the modal is called, from direct js call and from data attribute

For reference (Bootstrap modal event list) : http://getbootstrap./javascript/#modals-events

add a class for the button for-example: myModalButtonsClass, and add an onclick event for that class instead of adding an onclick event for each and every button

$(".myModalButtonsClass").click(function(){ 


});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743636401a4482222.html

相关推荐

  • javascript - Callback when we use data-target in bootstrap - Stack Overflow

    I am working with a single page application, There are some buttons whichwhich opens this modal throu

    19小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信