在模态打开时使用网站的其余部分

时间:2016-10-13 07:55:12

标签: html css html5 twitter-bootstrap bootstrap-modal

我遇到的问题是我找不到完整的解决方案;

我可以选择让用户在填写表格时打开“信息”模式。 我需要用户能够在“信息”模式打开时继续填写表单,这样他就可以在填写表单时使用此模式中的数据。

到目前为止,我遇到了几个对我的问题没有帮助的答案。 目前我只使用这个CSS代码作为我的模态:

#tokenModal {
    position: absolute;
    top:21px;
    left: 0px;
    right: auto;
    bottom: auto;
    width: auto;;
}


#tokenModal > .modal-dialog {
    width: 400px;
}

这个CSS代码允许我点击表单中的输入,例如复选框或“选择”输入,但我无法在文本输入中写入任何文本。

HTML中的模型配置也是:

<div id="tokenModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="Label123" data-backdrop="static" data-keyboard="false">

有没有办法满足我的需求,或者我应该使用替代解决方案吗?

0 个答案:

没有答案