我正在使用 jquery 对话框...我不想使用他们使用 google api 作为背景颜色主题的方式,我想使用我自己的例如:关闭按钮必须在一个带有 X 的圆圈中,标题栏的背景应该设置为#FFFFFF,对话框的高度和宽度必须根据我的数据调整(虽然不是动态的),请指导我,到目前为止我可以在对话框中弹出div但高度和宽度不能调整。有人可以指导我一个教程或调整...非常感谢
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:rich="http://richfaces.org/rich"
xmlns:a4j="http://richfaces.org/a4j">
<h:head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="JqueryLib/jquery.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script src="js/jquery-1.8.2.js"></script>
<h:outputStylesheet library="css" name="application_1.css"></h:outputStylesheet>
<style type="text/css">
</style>
<script>
$(document).ready(function(){
$("#viewDetails").click(function(){
$("#popup").dialog();
})
});
</script>
</h:head>
<body>
<form id="Form1">
<h:outputText id= "viewDetails" value="View Details" outcome="#"/>
<div id="popup" class="popup" title="MyTitle" style="display: none">
This is my data table....where I can not adjust the data inside the dialog box...
</div>
</form>
</body>
</ui:composition>
我不想使用具有标题栏主题的 google api。我想自定义css