我想删除 jQuery 对话框的 titelbar 。 但我要保持关闭( 交叉) 按钮 。
我发现了这个问题:
jquery UI 对话框:如何在没有标题栏的情况下初始化?
答案解释如何删除标题栏, 但如果我这样做, 它也会删除关闭按钮。 其它链接也存在, 但它们都相同 。 它们只是隐藏整个标题栏和关闭按钮 。
我想删除 jQuery 对话框的 titelbar 。 但我要保持关闭( 交叉) 按钮 。
我发现了这个问题:
jquery UI 对话框:如何在没有标题栏的情况下初始化?
答案解释如何删除标题栏, 但如果我这样做, 它也会删除关闭按钮。 其它链接也存在, 但它们都相同 。 它们只是隐藏整个标题栏和关闭按钮 。
使用此按钮可以删除 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;
}
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.
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 ...
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 ...
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 ...
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 ...
Is it possible for someone to give me a few pointers on how to display a multidimensional array in the form of a bar graph? The array is multidimensional, with three elements in each part - and the ...
Is it possible to reload a form after file-input change? I have a form where the user can chose an image for upload. I also have a php script which displays that image resized. I only wonder if it ...
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.