有没有办法让bootstrap模态对话框非模态?
我正在使用backdrop: false
的角度引导,但即使背景是透明的,弹出也是模态的。我无法使用该弹出窗口下的控件。
在this example中,当弹出窗口可见时,我无法在输入中使用更改文字
答案 0 :(得分:2)
您似乎需要覆盖# x.py
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())
和NullHandler
类的CSS; logging
对TRBL 0000设置仍然具有类似背景的效果:
public class ToweringStrings2 {
public static final int H = 2; //constant for the tower
public static void main(String[] args) {
drawTowers(H);
}
public static void drawTowers(int H) {
for (int i = 1; i <= H; i++) {
System.out.print(" ");
for (int j = 1; j <= i; j++) {
System.out.print("+");
}
System.out.println();
}
for (int k = 1; k <= H + 2; k++) {
System.out.print("@");
}
System.out.println();
}
}
请注意,您无法在modal
的边距下方点击,因此最好在modal-dialog
中进行定位。对不起我没有更清洁的解决方案,希望知道原因会有所帮助(在回调中调整JS的高度和宽度会更好)。