javascript - jquery 对话框小部件不保留父级

标签 javascript jquery html jquery-ui jquery-ui-dialog

这是一个非常简单的脚本来说明我的观点。我想我只是做错了什么。 http://jsfiddle.net/9qx2q/2/

HTML

<form id='myForm'>
    <div class="panelClass"> 
        Here's my jquery panel
    </div>
</form>

以及脚本

//when the div is dialog'ed it's relocated to be a child of body?
$('.panelClass').dialog({
    //appendTo : '#myForm', // uncomment to see that this does not move the panel
    create : function(e, ui) {
        //$(this).dialog('widget').appendTo('#myForm'); //uncomment to see that this DOES move the panel
    }
});

输出

<body>
  <form id="myForm"></form>
  <div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-

resizable" style="outline: 0px; z-index: 1003; position: absolute; height: auto; width: 300px; top: 235px; left: 104px; display: block;" tabindex="-1" role="dialog" aria-labelledby="ui-id-1"><div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"><span id="ui-id-1" class="ui-dialog-title">&nbsp;</span><a href="#" class="ui-dialog-titlebar-close ui-corner-all" role="button"><span class="ui-icon ui-icon-closethick">close</span></a></div><div class="panelClass ui-dialog-content ui-widget-content" style="width: auto; min-height: 82px; height: auto;" scrolltop="0" scrollleft="0"> 
            Here's my jquery panel
        </div><div class="ui-resizable-handle ui-resizable-n" style="z-index: 1000;"></div><div class="ui-resizable-handle ui-resizable-e" style="z-index: 1000;"></div><div class="ui-resizable-handle ui-resizable-s" style="z-index: 1000;"></div><div class="ui-resizable-handle ui-resizable-w" style="z-index: 1000;"></div><div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se ui-icon-grip-diagonal-se" style="z-index: 1000;"></div><div class="ui-resizable-handle ui-resizable-sw" style="z-index: 1000;"></div><div class="ui-resizable-handle ui-resizable-ne" style="z-index: 1000;"></div><div class="ui-resizable-handle ui-resizable-nw" style="z-index: 1000;"></div></div>
</body>

您将从上面的示例中看到,表单元素现在为空,面板是在表单之后创建的。当在面板上调用 .dialog() 时,面板将移动到 <body> 的末尾.

大致情况是这样的。 我在表单中有一个面板。该面板需要位于表单内,因为当它弹出时,它将具有需要在表单上维护的输入元素。 (有时我们会弹出这些面板来让用户提交更多信息等)。

虽然我确实有一个可行的解决方案,即通过更新创建方法,但我真的不认为这应该首先移动元素......除非......我只是做错了什么。

如有任何建议,我们将不胜感激。

谢谢

最佳答案

根据文档 appendTo 将在 jQuery UI 1.10.0 http://api.jqueryui.com/dialog/#option-appendTo 上添加

您所面临的是 jQuery UI 对话框的默认行为,它将对话框附加在正文的末尾 http://bugs.jqueryui.com/ticket/7948 ,所以我认为这不是您的代码的问题。

目前唯一的解决方法是您现在在 createopen 事件上执行的操作。

编辑

如果您愿意,也可以看看我的回答:Append jQuery UI dialog to its parent

关于javascript - jquery 对话框小部件不保留父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16065755/

相关文章:

javascript - 计算整数值的日期差异

javascript - jQuery Datatables - 具有平面数组数据源的 Datatable <td> 中的自定义元素

html - 悬停时图像阴影变化不起作用

php - JQUERY 如何从动态 div 中获取 id 名称?

javascript - 如何更改已选中复选框的父元素的样式

javascript - 元素在 detach() 和 appendTo() 之后消失

c# - 如何在少数页面上禁用缓存,以避免重复提交表单

javascript - 在 Javascript 中获取文档标题(getElementsByTagName)返回未定义

javascript - 未捕获的类型错误 : Cannot read property 'match' of undefined when iterating through index

html - 在 IE8 中拉伸(stretch)图像作为背景