我创建了jquery对话框。它没有在IE中显示关闭(x)按钮,但在FF中它显示正确。请帮我解决这个问题。
Jquery版本:1.11.1 Jquery UI版本:1.10.4
代码:
<!-- ui-dialog -->
<div id="dialog" title="Dialog Title">
<p>Test Me.</p>
</div>
$( "#dialog" ).dialog({
width : 400,
resizable : false,
buttons: [
{
text: "Yes",
click: function() {
$( this ).dialog( "close" );
}
},
{
text: "No",
click: function() {
$( this ).dialog( "close" );
}
}
]
});
答案 0 :(得分:0)
确保以正确的顺序加载脚本:
<script src="..../jquery-1.11.1.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="..../jquery-ui-1.10.4.j.js"></script>