我将滚动条放到div元素,下面是我的代码
我有为其分配文字的功能
$.each(obj, function(index,value) {
displayStringAppData = displayStringAppData+'<xmp>'+value+'</xmp>';
$("#configWindow").html('<br>'+displayStringAppData);
showRCModal('configWindow', 400, 700);
});
其中
function showRCModal(divId, height, width) {
var rcModel = "";
$('#'+divId).modal({
onShow: function() {
rcModel = this ;
},
onClose : function() {
rcModel.close();
}
});
$("#simplemodal-container").css({'height':height,'width':width,'padding':'0','border':'0'});
$(window).trigger('resize.simplemodal');
return rcModel;
}
但滚动没有来。我该怎么办。请帮帮我
答案 0 :(得分:0)
使用overflow:scroll属性和simplemodal-container css函数