当Bootstrap模式打开时,我如何调用函数?

How can I call a function when a Bootstrap modal is open?(当Bootstrap模式打开时,我如何调用函数?)
本文介绍了当Bootstrap模式打开时,我如何调用函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Boostrap 3.7和Blade(Laravel 5.5)。

我正在尝试在引导模式打开时显示console.log('works'),但它不起作用。

HTML:

@foreach(...)

    ...

    <div class="modal fade" id="reservationModal" tabindex="-1" role="dialog" aria-labelledby="reservationModal" aria-hidden="true">
        <div class="modal-dialog">
            ...
        </div>
    </div>
@endforeach

js:

$('#reservationModal').on('shown.bs.modal', function (e) {
    console.log('works');
});

我遵循此文档:https://getbootstrap.com/docs/3.3/javascript/#modals

我已经读过了:Calling a function on bootstrap modal open

感谢您的帮助!

编辑1:

我用以下代码解决了问题:

$(document).on('show.bs.modal', '#reservationModal', function (e) {
    console.log('works');
});

但如何区分情态动词(因为它们进入foreach循环)?

类似:

$(document).on('show.bs.modal', '#reservationModal-specificId', function (e) {
    console.log('works');
});

Html

我认为您的事件侦听器是在推荐答案打印之前创建的。 因此,请尝试此代码。

$(document).on('show.bs.modal', '#reservationModal', function (e) {
    console.log('works');
});

$(文档).on(‘show.bs.modal’,‘#Reserve vationmodal’,Function(E){});

粗体字符有助于识别您的模式

您的更新部件的答案

运行循环并创建您的模型,如下所示

<div class="modal fade reservationModal" id="reservationModal1" tabindex="-1" role="dialog" aria-labelledby="reservationModal" aria-hidden="true">
    <div class="modal-dialog">
        ...
    </div>
</div>

<div class="modal fade reservationModal" id="reservationModal2" tabindex="-1" role="dialog" aria-labelledby="reservationModal" aria-hidden="true">
    <div class="modal-dialog">
        ...
    </div>
</div>
...... and so on

以类的形式提供presvationMoal

并将id作为递增的值追加到其后面

$(document).on('show.bs.modal', '.reservationModal', function (e) {
    console.log($(this).attr("id"));
});

这篇关于当Bootstrap模式打开时,我如何调用函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

本文给大家介绍Javascript js中实现和PHP一样的时间戳格式化函数的方法,具有一定的参考借鉴价值,需要的朋友可以参考下,我们知道在php中有一个date()函数,可以方便的把时间戳格式化为时间字符串。可是在js中,我们要想实现这种效果,要写好
需求是模板字符串中不允许出现script 标签、不允许有javascript: 和 .js 文件引用,主要方法如下: clearScriptTag (str) { const reg = /script[^]*([\S\s]*?)\/script/gim; // 清除标签内 相关 xss 安全代码 const reg1 = /javascript:/gim; const reg2 = / *.js/gim; if (reg.test(str)) { str
javascript中Replace全部替换字符用法实例代码,替换1次和多次,主要是正则表达式 var r= "1\n2\n3\n";//将字母\n替换成分号alert(r.replace("\n",";"));//结果:1;2\n3\n 只替换了第一个var r= "1\n2\n3\n";//将字母\n替换成分号alert(r.replace(/\n/g, ";"));//结果:1;2;3; replac
js输出当前日期和时间的实例代码,具体实例代码如下,有兴趣的朋友可以尝试运行下。 !doctype htmlhtml lang="en" head meta charset="UTF-8" title获取当前时间/title /head body script type="text/javascript" /** *获取当前时间 *format=1精确到天 *format=2精确到秒 */ function
html页面:添加这一行 contentType: application/x-www-form-urlencoded !DOCTYPE htmlhtml lang="en"head meta charset="UTF-8" meta name="viewport" content="width=device-width, initial-scale=1.0" title显示小区信息/title script src="https://cdn.staticfile.org/jquery/1.10.2/jq
p5.js WebGL 3d graphics covered by 2d background when rotated(P5.js旋转时被2D背景覆盖的WebGL 3D图形)