未捕获的错误:jQuery.modal 上不存在方法显示
Posted
技术标签:
【中文标题】未捕获的错误:jQuery.modal 上不存在方法显示【英文标题】:Uncaught Error: Method show does not exist on jQuery.modal 【发布时间】:2017-12-18 03:53:45 【问题描述】:所以我尝试使用$('#myModal').modal('show');
强制保持引导模式即使在切换按钮单击时也显示
show 方法在 .click() 函数外部时有效,但在 .click() 函数内部时没有这种方法
这样
$('document').ready(function()
$('#my-toggle-button').click(function()
$('#myModal').modal('show'); // Throws up the below error
);
);
错误:
Uncaught Error: Method show does not exist on jQuery.modal
at Function.error (jquery-2.2.4.min.js:2)
at n.fn.init.a.fn.modal (materialize.min.js:8)
at htmlAnchorElement.<anonymous> (myScript.js:4)
at HTMLAnchorElement.dispatch (jquery-2.2.4.min.js:3)
at HTMLAnchorElement.r.handle (jquery-2.2.4.min.js:3)
但是当
$('document').ready(function()
$('#myModal').modal('show'); // Works fine
$('#my-toggle-button').click(function()
);
);
更新: 原来这是由于脚本导入具有 defer 和 aysnc 造成的。我不知道在什么地方使用这些是正确的,因为它们无法识别模态。
【问题讨论】:
你能尝试在 jsfiddle 或类似的东西中重现这个错误吗? 【参考方案1】:当你也在使用 materializecss 时尝试执行 bootstrap modal 时会出现此问题,最好的建议是使用 materializecss modal。
http://materializecss.com/modals.html
//initialize all modals
$('.modal').modal(
dismissible: true
);
//call the specific div (modal)
$('#modal2').modal('open');
享受吧!
【讨论】:
当我删除具体化错误消失。【参考方案2】:请检查对 bootstrap.js 或 bootstrap.min.js 文件的引用。该文件必须包含modals 组件。您还需要检查模式和按钮的标识符。代码必须能正常工作,见下面的sn-p。
$('#my-toggle-button').click(function()
$('#myModal').modal('show');
);
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified javascript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<div id="myModal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary">Ok</button>
</div>
</div>
</div>
</div>
<button id="my-toggle-button" class="btn btn-default">Push Me</button>
【讨论】:
【参考方案3】:如果您使用的是 materializecss,那么只需在像这样的引导之前包含它
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="/static/js/bootstrap/dist/js/bootstrap.js"></script>
那你就可以用这个功能来显示模态了
$("#modalId").modal('show');
【讨论】:
不确定如何在 html 页面中包含该功能。以上是关于未捕获的错误:jQuery.modal 上不存在方法显示的主要内容,如果未能解决你的问题,请参考以下文章
对象“RealmSwiftPermissionRole”上不存在主键属性“名称”
TypeScript 令人困惑的错误'对象可能是'未定义'和'类型上不存在属性'长度''
错误 - 预检请求未通过访问控制检查:请求的资源上不存在“Access-Control-Allow-Origin”标头