这将覆盖设置jQuery UI对话框
标题时使用的
函数,允许它包含HTML。
$.widget("ui.dialog",$.extend({},$.ui.dialog.prototype,{
_title: function(title) {
if (!this.options.title ) {
title.html(" ");
} else {
title.html(this.options.title);
}
}
}));
原文链接:https://www.f2er.com/jquery/185403.html