3
嗨,我想改变对话框的文字大小。动态地,我创建了th对话框,我需要改变文字大小。怎么做?请引导我。如何更改jquery中的对话框文字大小
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
}
我怀疑papaitians – user1324068