我正在使用“模态”对话框来提示用户输入消息。它在IE中运行良好,但在Firefox中只显示第一行。我怎样才能解决这个问题。这就是我的邮件格式化方式。
var modal = "<div id='modal_pop'><table><tr><td> "
+ "Please check you have a valid value to proceed.<br> Change the value if possible. Value should be valid to proceed further.<br>"
+ "Value should not be a number or a special case character<br>
Make changes and save the work before exiting it.<br> "
+ "Click logoff now or continute using the application.</td> </tr> </table></div>";
这是jQuery对话框:
var showPopup = function() {
$(modal).dialog({
buttons: {
"Test": function() {
//ABC
},
"Test1": function() {
//XYZ
}
},
modal: true,
width: 430,
height: 100,
resizable:'yes',
scroll:'no'
});
}
答案 0 :(得分:1)
尝试将宽度设置为自动width: 'auto'
并检查。我认为由于溢出,文本正在被删除。