我有一个 jQueryUI 对话框,但关闭它的 X 与背景颜色相同。我怎么能改变它。我使用了托管在他们网站上的 jqueryUI CSS,它可以工作,所以它一定是我的 jQuery 主题。我在http://www.tapmeister.com/dialog/有一个实时示例,代码如下所示。谢谢
<!DOCTYPE HTML>
<html>
<head>
<title>test</title>
<meta charset="utf-8" />
<meta name="robots" content="noindex" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link href="css/ui-lightness/jquery-ui-1.9.0.custom.css" type="text/css" rel="stylesheet" />
<script src="js/jquery-ui-1.9.0.custom.min.js" type="text/javascript"></script>
<style type="text/css">
.ui-dialog-titlebar { border:0; background:none; color:#000000; }
</style>
<script type='text/javascript'>
$(document).ready( function() {$("#dialog").dialog({autoOpen: true});});
</script>
</head>
<body>
<div id="dialog" title="Title">Hi There!</div>
</body>
</html>