我创建了一个快速模态对话窗口,当我在 FireFox 中打开它时,屏幕上有一条不褪色的带子(请参阅 参考资料)。这在 Chrome 中不会发生。
知道发生了什么吗?
jQuery:
$("#add_route").click(function(){
$("#create_route").dialog("open");
});
$("#create_route").dialog({
autoOpen: false,
height: 300,
width: 200,
modal: true,
buttons: {
Cancel: function() {
$(this).dialog("close");
}
}
});
html:
<div id="create_route" title="Create New Route">
Please choose a lead for this new route:<br>
</div>
自然,它适用于 jsfiddle,但不适用于我的项目....