bootstrap modal插件 不设置按钮能打开对话框吗?

demo中的例子在本地试了下
<button class="btn btn-primary btn-lg" data-toggle="modal"
data-target="#myModal">开始演示模态框</button>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
……
</div>
使用button打开对话框没有问题

但是如果不定义button直接执行以下语句的话
$('#myModal').modal('show');
控制台提示cannot read property 'show' of undefined

有人遇到过类似问题吗?
已邀请:

rew1011

赞同来自: initials1

如果你导入了bootstrap.min.js,那么这两种做法都可以做到。

要回复问题请先登录注册