尝试在电子中显示Bootstrap Modal。
我已经安装了jquery和bootstrap模块。然后在.js文件中编写以下代码。
const $ = require('jquery');
require('bootstrap');
$(document).ready(() => {
$('#myModal').modal();
});
当然,.html文件中有id=myModal的Div标签。但是,在运行时,会显示以下错误。
$(...).modal is not a function.
原因何在,如何落实?
1条答案
按热度按时间ycl3bljg1#
请尝试使用此代码的应用程序
我以前在ElectronJS中遇到过Bootstrap模态问题。它使用这个代码很好。