English 中文(简体)
jQuery 界面对话框, 没有标题栏, 但保留关闭按钮
原标题:jQuery UI dialog without a title bar but keep the close button

我想删除 jQuery 对话框的 titelbar 。 但我要保持关闭( 交叉) 按钮 。

我发现了这个问题:

jquery UI 对话框:如何在没有标题栏的情况下初始化?

答案解释如何删除标题栏, 但如果我这样做, 它也会删除关闭按钮。 其它链接也存在, 但它们都相同 。 它们只是隐藏整个标题栏和关闭按钮 。

Is there any solution that hides the title bar while keeping the close button?

最佳回答

使用此按钮可以删除 jQuery 对话框的 titelbar, 而不是关闭按钮

 $(function() {
    $( "#dialog" ).dialog();
    $("#ui-dialog-title-dialog").hide();
    $(".ui-dialog-titlebar").removeClass( ui-widget-header );
 });

新版jquery 界面 & gt; 1. 10. 3

$("#dialog .ui-dialog-titlebar").css({ 
     "background-color" : "transparent", 
     "border" : "0px none" 
});
问题回答
$(function() {
    $( "#dialog" ).dialog();
    $(".ui-dialog-titlebar").removeClass( ui-widget-header );
});

您可以使用上面描述的技术查询, 以近端图标删除栏, 然后自己添加一个近端图标 。

CSS :

.CloseButton {
background: url( ../icons/close-button.png );   
width:15px;
height:15px;
border: 0px solid white;
top:0;
right:0;
position:absolute;
cursor: pointer;
z-index:999;
}

HTML :

var closeDiv = document.createElement("div");
closeDiv.className = "CloseButton";

/ 将此第(div)段附加到包含您内容的第(div)段

联署材料:

 $(closeDiv).click(function () {
         $("yourDialogContent").dialog( close );
     });

我认为最简单、最强的解决方案(这里的其他解决方案无法为1. 10.3所用,

$("#dialog .ui-dialog-titlebar").css({ 
     "background-color" : "transparent", 
     "border" : "0px none" 
});

我在这里尝试了其他解决方案,建议更改 backbackbround-color 属性,但这没有帮助。 对于我来说,解决方案是将 background 属性改为透明 。

.ui-dialog-titlebar { background: transparent; border: 0 none; }





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签