你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
发现
话题
注册
登录
提问
3.3.5的bootstrap 是不是不支持在<form>里面增加模态框(modal)?
怎么解决呢?
没有找到相关结果
已邀请:
与内容相关的链接
提交
5 个回复
rew1011
赞同来自:
把modal理解为独立的div隐藏域,表单要嵌套在modal里面才对。
比如这个例子
Psychopath
赞同来自:
但是需要表单里做modal怎么办呢?
rew1011
赞同来自:
modal独立的意思是它的父级是body,可以通过任何元素的任何事件去触发它而已。modal不用出现在其它的dom结构中。
Psychopath
赞同来自:
<body>
<form class="form-horizontal" role="form">
<button class="btn btn-primary btn-lg" data-toggle="modal"
data-target="#myModal"> 开始演示模态框 </button>
</form>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close"
data-dismiss="modal" aria-hidden="true"> × </button>
<h4 class="modal-title" id="myModalLabel"> 模态框(Modal)标题 </h4>
</div>
<div class="modal-body"> 在这里添加一些文本 </div>
<div class="modal-footer">
<button type="button" class="btn btn-default"
data-dismiss="modal">关闭 </button>
<button type="button" class="btn btn-primary"> 提交更改 </button>
</div>
</div>
</div>
</div>
</body>
这样吗?
Psychopath
赞同来自:
谢谢大神!
要回复问题请先
登录
或
注册
发起人
Psychopath
相关问题
祝贺Bootstrap问答社区上线!【火速支持】
【请教】BootStrap的JavaScript插件问题
BootStrap里有没有适合移动端的Affix组件,我想做一个类似百度百科的目录效果
bootstrap响应式导航栏点击collapse的按钮没有反应,不会向下展开
Sublimetmpl自定义bootstrap模板,新建文件总显示CR字符
bootstrap 表单构造器谁有中文的源码呀,ctrl+s下来不是很好用
各位大神,谁知道bootstrap 扩展插件在哪里?
弱鸡请教:Bootstrap的icon字体是怎么实现的?
bootstrap的图标字体怎么用啊
bootstrap,模态窗口如何remote一个新的页面到现在的窗口?
模态框弹出后如何获得焦点(已经解决)
问题状态
最新活动:
2015-12-24 10:17
浏览:
2398
关注:
2
人
5 个回复
rew1011
赞同来自:
比如这个例子
Psychopath
赞同来自:
rew1011
赞同来自:
Psychopath
赞同来自:
<form class="form-horizontal" role="form">
<button class="btn btn-primary btn-lg" data-toggle="modal"
data-target="#myModal"> 开始演示模态框 </button>
</form>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close"
data-dismiss="modal" aria-hidden="true"> × </button>
<h4 class="modal-title" id="myModalLabel"> 模态框(Modal)标题 </h4>
</div>
<div class="modal-body"> 在这里添加一些文本 </div>
<div class="modal-footer">
<button type="button" class="btn btn-default"
data-dismiss="modal">关闭 </button>
<button type="button" class="btn btn-primary"> 提交更改 </button>
</div>
</div>
</div>
</div>
</body>
这样吗?
Psychopath
赞同来自: