- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在弹出窗口上有一个对话框,我想渲染到顶部的对话框,但现在它显示在弹出窗口下面:
你能告诉我如何在顶部呈现对话框“信息”吗?我的代码是这样的
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
诺丁加
<script language="JavaScript1.2">
function doUnload()
{
opener.document.actionForm.action.value='Noteringar';
opener.document.actionForm.actionCommand.value='releaseLock';
opener.document.actionForm.submit();
//opener.releaseLock();
}
</script>
<body id="content" onunload="doUnload()" >
<form name="actionForm" action="PandoraActionServlet" style="display: inline;" method="post">
<input type="hidden" name="currPage" value="/PandoraArendeWeb/arendeprocess_noteringar.jsp" />
<input type="hidden" name="action" value="" />
<input type="hidden" name="actionCommand" value="" />
<input type="hidden" name="actionModifier" value="" />
<input type="hidden" name="notid" value="" />
<input type="hidden" name="textnote" value="" />
<input type="hidden" name="fname" value="Markus " />
<input type="hidden" name="lname" value="Stålö " />
<input type="hidden" name="sign" value="MSTÅ " />
<div class="yta2">
<div class="fl100 TB_nb"> Noteringar 1201186-2 </div>
<div class="clear"> </div>
<div class="clear"> </div>
<div class="fl2"> </div>
<div class="fl95">
<div STYLE="overflow: auto; height: 300;">
<table width="100%" cellspacing="0" cellpadding="2" align="center" class="bb" id="base_table">
<tr>
<th class="thkant" width="15%">Skapad datum</td>
<th class="thkant" width="70%">Text</td>
<th class="thkant" width="15%">Skapad av</td>
</tr>
<tr class="note" id="110">
<td>2012-08-31</td>
<td>Test 7</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="109">
<td>2012-08-31</td>
<td>Test 6</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="108">
<td>2012-08-31</td>
<td>Test 5</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="107">
<td>2012-08-31</td>
<td>Test 4</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="106">
<td>2012-08-31</td>
<td>Test 3</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="105">
<td>2012-08-31</td>
<td>Test 2</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="104">
<td>2012-08-31</td>
<td>Test</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="103">
<td>2012-08-30</td>
<td>Släpp hörnflaggan!</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="102">
<td>2012-08-30</td>
<td>Fotboll är en bollsport?</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
<tr class="note" id="101">
<td>2012-08-30</td>
<td>Glen is the man!!!</td>
<td>Markus Stålö, <br>MSTÅ</td>
</tr>
</table>
</div>
</div>
<div class="clear"> </div>
<div class="fl2"> </div>
<div class="fl30"><input type="button" value="Skapa notering" class="opener_create_note" ></div>
</div>
<div id="new_note">
<div class="clear"> </div>
<div class="fl2"> </div>
<div class="fl15">Text:</div>
<div class="fl65"><textarea cols="60" rows="4" name="newnote" id="write_note"></textarea></div>
<div class="clear"> </div>
<div class="clear"> </div>
<div class="clear"> </div>
<div class="clear"> </div>
<div class="clear"> </div>
</div>
<div id="edit_note">
<div class="clear"> </div>
<div class="fl2"> </div>
<div class="fl15">Text:</div>
<div class="fl65"><textarea cols="60" rows="4" name="editnote" id="change_note"></textarea></div>
<div class="clear"> </div>
<div class="clear"> </div>
<div class="clear"> </div>
<div class="fl2"> </div>
<div class="fl15">Skapad av:</div>
<div class="clear"></div>
<div class="fl2"> </div>
<div class="fl90" id="sname"></div>
</div>
<script language="JavaScript1.2" src="css_js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script language="JavaScript1.2" src="css_js/jquery-ui-1.8.17.custom.min.js" type="text/javascript"></script>
<script language="JavaScript1.2" src="css_js/jquery.pandora.globals.js" type="text/javascript"></script>
<SCRIPT language="JavaScript1.2" type="text/javascript">
$(function() {
$('#base_table').css('cursor','pointer');
$('.opener_create_note').click(function() {
$("#new_note").dialog('open');
return false;
});
$("#new_note").dialog({
width:'600', height:'100', draggable:false,
open: function(){
$("#write_note").focus();
},
autoOpen: false, modal:true, show:'fold', hide: 'slide', resizable:false, closeOnEscape: true, title: 'Skapa notering',
buttons: { 'Avbryt': function() {
$('textarea#write_note').val("");
$(this).dialog('close'); },
'Spara': function() {
var text = $('textarea#write_note').val();
//if(text.length > 1000) {
//alert("Fältet får innehålla max 1000 tecken.");
//} else {
if(text.length < 1) {
if (confirm("Noteringen är tom. Vill du fortsätta?")) {
submitNotering('Noteringar','ny', '', text);
$(this).dialog('close');
}
} else {
if(text.length < 1000){
submitNotering('Noteringar','ny', '', text);
$(this).dialog('close');
} else {
//alert("Fältet får innehålla max 1000 tecken.");
//submitNotering('Noteringar','max1000', '', text);
doAsk('Information', '<ul><li id="message_info_0">Fältet får innehålla max 1000 tecken.</li></ul>','' ,'','','');
}
}
//}
}
}
}
);
$('.note').click(function() {
var $nr = $(this).attr('id');
$("#edit_note").data("rid", $nr);
$("#edit_note").dialog('open');
var $currText = "";
var $currSkapad = "";
var $currNamn = "";
var $tds = $(this).find('td');
if($tds.length != 0) {
$currSkapad = $tds.eq(0).text();
$currText = $tds.eq(1).text();
$currNamn = $tds.eq(2).text() + ", ";
$.trim($currNamn);
}
$("textarea#change_note").val($currText);
$("#sname").text($currNamn + $currSkapad);
return false;
});
$("#edit_note").dialog({
width:'600', height:'100', draggable:false, autoOpen: false, modal:true, show:'fold', hide: 'slide', resizable:false, closeOnEscape: true, title: 'Ändra notering',
buttons: { 'Ta bort': function() {
if (confirm("Vill du ta bort noteringen?")) {
submitNotering('Noteringar','tabort', $(this).data("rid"), '');
$(this).dialog('close');
} },
'Avbryt': function() {
$(this).dialog('close'); },
'Spara': function() {
var text = $('textarea#change_note').val();
if(text.length > 1000) {
alert("Fältet får innehålla max 1000 tecken.");
} else {
if(text.length < 1) {
if (confirm("Noteringen är tom. Vill du fortsätta?")) {
submitNotering('Noteringar','spara', $(this).data("rid"), text);
$(this).dialog('close');
}
} else {
submitNotering('Noteringar','spara', $(this).data("rid"), text);
$(this).dialog('close');
}
}
}
}
});
});
</SCRIPT>
</form>
</body>
</html>
CSS:
#dialog {position:absolute; width:425px; padding:0px; margin-top:50px; z-index:200; background:#fff}
#dialog-header {display:block; position:relative; width:425px; padding:3px 6px 7px; height:14px; font-size:14px; font-weight:bold}
#dialog-title {float:left}
#dialog-content {display:block; height:160px; padding:6px; color:#666666; font-size:75%}
#dialog-mask {position:absolute; top:0; left:0; min-height:100%; width:100%; background:#FFF; opacity:.40; filter:alpha(opacity=40); z-index:100}
.prompt {background-color: #FFFFFF; bottom right no-repeat; border:3px solid #000000; border-top:none}
.promptheader {background-color: #FFFFFF; repeat-x; color:#355468; border:3px solid #000000; border-bottom:none}
.dialogbuttonlink{background: none;
margin: 0;
padding: 0;
border: none;
cursor: pointer;
color: #003366;
text-decoration: underline;
font-weight: bold; }
* body{
margin: 0px;
}
#top {
position: absolute;
left: 0px;
top: 0px;
height: 35px;
width: 100%
}
#av_ikoner {
position: absolute;
right: 200px;
display: inline;
}
#av_logga {
float: right;
right: 5px;
display: inline;
text-align: right;
margin-right: 20px;
}
#flikkant {
position: absolute;
left: 0px;
top: 50px;
height: 35px;
width: 100%;
padding-left: 16px;
padding-top: 8px;
margin-bottom: 0px;
}
#sub {
position: absolute;
left: 0px;
top: 85px;
height: 10px;
width: 100%;
padding-left: 16px;
padding-top: 2px;
margin-bottom: 10px;
}
#yta {
position: absolute;
left: 15px;
right: 15px;
top: 105px;
padding: 4px;
}
#popupD {
position: absolute;
top: 1750px;
left: 180px;
height: 125px;
width: 1075px;
}
#popupS {
position: absolute;
top: 1750px;
left: 300px;
height: 125px;
}
#popupP {
position: absolute;
top: 1600px;
left: 300px;
height: 125px;
}
#popupSokNamn {
position: absolute;
top: 200px;
width: 600px;
left: 400px;
height: 800px;
}
#popupSokNamn2 {
position: absolute;
top: 950px;
width: 600px;
left: 400px;
height: 800px;
}
#popupR {
position: absolute;
top: 1700px;
left: 200px;
height: 50px;
}
#popupI {
position: absolute;
top: 700px;
left: 300px;
right: 1%;
height: auto;
}
#popupF {
position: absolute;
top: 280px;
left: 300px;
right: 25%;
height: auto;
}
#popupA {
position: absolute;
top: 300px;
left: 300px;
right: 1%;
height: auto;
}
#popupU {
position: absolute;
top: 300px;
left: 300px;
right: 1%;
height: auto;
}
#popupO {
position: absolute;
top: 300px;
left: 300px;
right: 1%;
height: auto;
}
#popupEPn {
position: absolute;
top: 300px;
left: 300px;
right: 1%;
height: auto;
}
#popupEPa {
position: absolute;
top: 300px;
left: 300px;
right: 1%;
height: auto;
}
#rappALL
,
#rappAE
,
#rappFJ
,
#rappKO
,
#rappPT
,
#rappUZ
,
#rappX
,
{
height
:
600
px
;
overflow
:
auto
;
width
:
100%;
}
#klassTB {
height: 100px;
overflow: auto;
width: 100%;
}
#popupD1 {
position: absolute;
left: 250px;
height: 125px;
}
.yta2 {
display: inline;
width: 100%;
padding-left: 5px;
}
#L-col {
display: inline;
width: 65%;
}
#R-col {
display: inline;
width: 35%;
}
#box {
width: 400px;
padding: 8px;
margin-top: 10px;
margin-bottom: 100px;
}
#scroll {
height: 680px !important;
overflow: auto;
}
最佳答案
堆叠由position
、z-index
和文档顺序的组合控制。例如,relative
block 将显示在 static
之上,即使静态出现在文档的后面也是如此。
这里有一个网站,非常适合试验和熟悉属性如何交互:http://tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp
要回答您的问题,因为您的弹出窗口已经是 absolute
,您可能只需要将它们的 z-index
设置为 1
或更大.
关于html - 如何在顶部呈现我的对话框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12211093/
我正在尝试向图像顶部和底部的 ImageView 添加渐变。我不想在 ImageView 之上添加 TextView 。我该如何实现? 最佳答案 看来您简单而干净的解决方案是用 FrameLayout
我可以寻求帮助吗, 我有日期 - “公司名称”和“日期”,例如 $value |"Comp Name"| "Date" | |:----------|----------:| |computer
我有两个表,我试图从中运行查询以返回每个人的最大(或最高)交易。我应该注意,我无法更改表结构。相反,我只能拉数据。 人 +-----------+| id | name |+-----------+|
所以我有一个用管道打开的 n 个流的数组,但是使用 gdb,我发现当我尝试关闭流或管道的写入端时程序失败。我可以很好地写入管道,但关闭它们不起作用。我在程序上运行 valgrind,它所做的只是打印出
大家好,这是我的难题。我正在尝试创建一个标签栏,该标签栏从上到下锚定在左侧,而不是从左到右锚定在底部。我创建了一个工具栏项目,将栏准确地放置在我想要的位置,但我希望选项卡栏相同,具有相同的功能,当然除
http://jsfiddle.net/GuXQZ/3/ header slideshow lates Content
我的图片出了点问题,我无法解决这个问题。这是我的代码.. HTML HIDE CSS #ads { -webkit-border-bottom-right-r
我有一个包含 3(css 网格)列的设计。第二列有嵌套的网格内容需要垂直滚动,而其他两列保持各自的高度。我给第二个嵌套列一个溢出,但我还需要给它一个顶部和底部填充或边距。我的解决方案没有顶部/底部填充
我在 View 中有两个 UIToolbar,分别在顶部和底部。我正在尝试在 iOS 版本中一致地应用外观。从 iOS5 开始有这个 setBackgroundImage: forToolbarPos
一个 div 我使用 top:-26px; 在 css 中设置高度。我有其他 div 其他地方我想与那个 div 对齐。我注意到在 jquery 中编写 .css('top') 得到了我的 css 而
我有这个无序列表 two three 有没有一种方法可以将无序列表添加到无序列表的前面,使其像这样结束? ONE two three 请注意“ONE”已添加到列表
我想检测鼠标何时离开顶部的视口(viewport)(可以说是向北)。我在网上搜了下How can I detect when the mouse leaves the window? .是一个好的开始
运行顶级命令top -c在 Ubuntu 服务器上显示当前正在运行的所有命令。关于 PostgreSQL 命令,括号中的值是什么意思?我说的是图片中红色框旁边的值。 最佳答案 我找不到任何文档来支持这
我想知道将顶部和底部边距添加到 GtkTextView 的正确且普遍接受的方法位于 GtkScrolledWindow 内.有设置左右边距的功能,我正在使用: gtk_text_view_set_le
作为很多“初学者”,我认为使用 TOP_OF_PIPELINE 作为 dst 和 BOTTOM_OF_PIPELINE 作为 src 意味着 ALL_COMMANDS 两者。 Here Nicol B
我正在尝试使用 jQuery/Javascript 解决这个问题: 当浏览器向下滚动且窗口底部到达页脚 DIV 顶部时,执行 CSS 代码更改。 问题示例: https://elodywedding.
我想使用范围 slider 来选择一个值并将该值呈现在 Angular 中的范围选择器顶部。我的html代码是: Raio: {{raio}} metros 在我的 co
我想将手的图片放在靠近脸部的黑色 Canvas 上。这可以吗?有没有办法确定图片的位置? 这是我的代码: var canvas; var canvasContext; window
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我是一名优秀的程序员,十分优秀!