脚本无法在我的引导模式中工作

问题描述 投票:0回答:3
javascript twitter-bootstrap playframework modal-dialog load
3个回答
1
投票

$( document ).ready(function(){}); 永远不会在模态中到达,因为加载页面时已经触发了此事件(模态在之后加载...)

尝试直接插入脚本,如下所示:

<script type="text/javascript">
    $( "#first" ).focus(function() {
        alert( "Handler for .focus() called." );
    });
</script>

0
投票
当引导模式弹出时,

shown.bs.modal
事件将被触发。这是例子。

$('#myModal').on('shown.bs.modal', function () {
  $('#myInput').trigger('focus')
})

Full documentation.
https://getbootstrap.com/docs/4.0/components/modal/

0
投票

试试这个我已经准备好这个功能了

$('#myModal').on('shown.bs.modal', function () {
    // Your script here
});

$(document).on('shown.bs.modal', '#myModal', function () {
    // Your script here
});
© www.soinside.com 2019 - 2024. All rights reserved.