我想在Android设备上调整模态窗口的大小。 它包含一个在complite模式下无法显示的表。 我尝试过这个功能,但它不会......
$('#myModal').on('shown.bs.modal', function () {
$(this).find('.modal-dialog').css({width:'auto',
height:'auto',
'max-height':'100%'});
});
模拟器模态窗口上的在corrct模式下可视化...
答案 0 :(得分:0)
我用这段代码解决了:
var h = window.innerHeight;
h *= 0.7;
document.getElementById('modal').style.height = h + "px";
document.getElementById('myModalBody').style.height = h - 50 + "px";