是否有可能使自动完成(jQueryUI)的建议得出一个iframe,具有相同的“select”元素行为?我举了一个例子:
答案 0 :(得分: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>
整个例子都缺少与解释这一点无关的所有事情,所以它不起作用。 Addapt根据需要加入一些糖。
至于之前引用的样式,你必须给元素一个位置和样式,因为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
}
})
});
再一次,可能会出现空白,因此请填写相关代码