您好我想更改对话框文本大小。动态地我创建了对话框,我需要更改文本大小。如何做到这一点?请指导我。
function validate_email(){
window.$required = $("#dialog").dialog({
width: 300,
height: 450,
autoOpen: false,
buttons: {
'Complete': function() {
checkstatus(userid);
}
}
});
$required.html('Your account setup has been initiated.
started.').dialog('open');//here my text
}
答案 0 :(得分:4)
您可以使用.css()修改对话框的样式:
function validate_email(){
window.$required = $("#dialog").dialog({
width: 300,
height: 450,
autoOpen: false,
buttons: {
'Complete': function() {
checkstatus(userid);
}
}
}).css("font-size", "20px");
$required.html('Your account setup has been initiated. started.').dialog('open');//here my text
}
答案 1 :(得分:1)
在样式表中,您可以设置整个对话框和/或其中元素的字体:
<style>
#dialog { font-size: 25px; }
#dialog h2 { font-size: larger; }
#dialog div { font-size: 20px; }
#dialog div.bigger { font-size: 150%; }
#dialog p { font-size: x-small; background-color: blue; }
</style>
font-size
property接受多个不同单位的地方。
当然你也可以用同样的方式设置其他CSS属性,如上例中最后一行所示。