3

是否可以让自动完成(jQueryUI)的建议退出一个 iframe,具有与“选择”元素相同的行为?我举一个例子:

http://jsbin.com/ehidef/1

4

1 回答 1

2

事实上,这是可以做到的,尽管一些样式是强制性的。jQueryUI 接受一个元素来附加选项,您可以将父窗口作为该元素传递。一个例子:

主窗口:

<html>
    <head></head>
    <body>
        <iframe src="iframe.html"></iframe>
    </body>
</html>

iframe.html

<html>
    <head>
        <!-- include jQuery and jQuery UI and the like -->
        <script type="text/javascript">
            jQuery(function($){
                // This will take parent frame if in iframe, own body elsehow
                var el=top.document.body 

                // Instructs jQuery UI to show things on that previous element
                $('input').autocomplete({appendTo:el}); 
            });
        </script>
    </head>
    <body>
        <input type="text"/>
    </body>
</html>

整个示例遗漏了与解释该点无关的所有内容,因此它不起作用。根据需要添加并添加一些糖。

至于我之前提到的样式,你必须给元素一个位置和样式,因为 1)相对于输入位置的位置与父窗口无关,2)父不需要加载 jqueryui 样式表,尽管你可以使用类似的技术从 iframe 内部动态加载它们。

重要的:

这只有在父母和孩子都在同一个域中时才有效[见:SOP ]

更新

在完成同样的事情之后,我想出了这个样式和位置的解决方案:

var files=[ // UI styles to be loaded on top frame
        "css/ui-lightness/jquery-ui-1.10.3.custom.css",
        "css/ui-lightness/custom.css"
]

// Create link tag and append to top frame head
for (var a in files) {
    var style=$("<link/>", {
        rel: "stylesheet",
        type: "text/css",
        href: files[a]
    });

    $(top.document).find('head').append(style);
}

// As it turns out i had many iframes, so this will get the right one
var parentIframe=$(el).find('iframe').filter(function(){
    return window.frameElement==this
});

$('input').each(function(){ // Cicle inputs to use with ui autocomplete
    // set position to left + input offset  2 is a fix for borders on input
    var pos= "left+"+($(this).offset().left+2)+
    // and to top + input position + height to have it on the bottom
             " top+"+($(this).offset().top+$(this).outerHeight()+1);

    // Autocomplete 
    $(this).autocomplete({
        appendTo:top.document.body, // put it on top window's body
        position:{
            at: pos,        // at calculated position
            of:parentIframe // from parent iframe
        }
    })

});

再次,可能有空缺,随意填写相关代码

于 2013-12-05T18:08:20.587 回答