所以,我已经成功地滚动条添加到大JQM弹出窗口用css('overflow-y', 'scroll')
但如何做到这一点, 只有当弹出比用户的视口大?
我与尝试的jQuery可见的插件,但我不能让它回应:
http://jsfiddle.net/mmRnq/124/
$('#test-button').on('click', function(e) {
$('#confirmDialog').popup('open');
// https://stackoverflow.com/questions/20791374/jquery-check-if-element-is-visible-in-viewport
if(!$('#confirmDialog').visible(true)) {
alert('Popup not fully visible - add overflow scrolling');
$('#confirmDialog').css('overflow-y', 'scroll');
}
});