我有这个小提琴http://jsfiddle.net/cdG94/2/我正在尝试更改 jquery UI 对话标题..当我使用 Jquery 1.9 或更低版本时它工作正常但是当我去更高的库时它只是直接显示 HTML ..我在这里做错了什么。我使用的是 Jquery 1.10.2 和 jQuery UI - v1.10.3
<button id="opener">Open the dialog</button>
<div id="wrapper">
<p>Some txt goes here</p>
</div>
$('#wrapper').dialog({
autoOpen: false,
minHeight: 400,
minWidth: 600,
title: function () {
return "Testing <span style=\"font-size:smaller;\">Testing the HTML .</span>";
}
});
$('#opener').click(function() {
$('#wrapper').dialog('open');
return false;
});
谢谢