jquery ui dialog 设置长度和宽度
There is no nutrition in the blog content. After reading it, you will not only suffer from malnutrition, but also impotence.
The blog content is all parallel goods. Those who are worried about being cheated should leave quickly.
$("#passwordDialog").on('click', function(e) {
//e.preventDefault();
var dialog = $( "#dialog-message" ).removeClass('hide').dialog({
modal: true,
title: "<div class='widget-header widget-header-small'><h4 class='smaller'> 密码强度说明</h4></div>",
title_html: true,
height: 220,
width: 600,
buttons: [
{
text: "关闭",
"class" : "btn btn-minier",
click: function() {
$( this ).dialog( "close" );
}
}
]
});
});