我正在使用metawidgetJs,如果它从Iframe调用,则Tabs永远不会支持IE。我分享了基本的示例代码。
这是基本的html文件,如果我将这个文件打开到IE中它工作正常,但如果我将这个文件从Iframe调用到另一个文件并将这个新文件打开到IE浏览器标签中就会被破坏。
<!DOCTYPE html>
<html>
<head>
<script src="http://metawidget.sourceforge.net/js/4.2/metawidget-core.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="http://metawidget.sourceforge.net/js/4.2/metawidget-jqueryui.min.js" type="text/javascript"></script>
<script type="text/javascript">
var person = {
"myname":"no angular js",
"contact":'contact',
"dimensions": 'dimensions'
};
</script>
</head>
<body>
<form>
<div id="metawidget"></div>
</form>
<script type="text/javascript">
var mw = new metawidget.Metawidget( document.getElementById( 'metawidget' ), {
inspector: new metawidget.inspector.CompositeInspector( [ new metawidget.inspector.PropertyTypeInspector(),
function( toInspect, type, names ) {
return {
properties: {
"myname":{
"title":"Name",
"section":"Personal Details",
"type":"string",
"required":"true",
"pattern":"^(0|[1-9][0-9]*)$"
},
"contact":{
"title":"Contact",
"section":"Contact Information",
"type":"string",
"required":"true",
"pattern":"^(0|[1-9][0-9]*)$"
},
"dimensions":{
"title":"Aggrigation Dimention",
"section":"Dim",
"type":"string",
"required":"true",
"pattern":"^(0|[1-9][0-9]*)$"
}
}
};
} ] ),
layout: new metawidget.jqueryui.layout.TabLayoutDecorator(
new metawidget.layout.DivLayout( { numberOfColumns: 2 } ))
} );
mw.toInspect = person;
mw.buildWidgets();
</script>
</body>
这是我的另一个档案。当我通过将第一个文件调用到这个iframe来打开这个时,IE浏览器会破坏标签
<!DOCTYPE html>
<html>
<body>
<iframe src="firstFile.html" width="500" height="500">
</iframe>
</body>
</html>
答案 0 :(得分:1)
我看到你的样本有两个问题:
第一个问题
在所有浏览器上,标签功能正常但很难看到。这是因为没有CSS样式。您在<head>
中遗漏了样式表参考。我补充说:
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css"/>
现在标签出现在IFRAME和非IFRAME版本中,而不是IE浏览器。
第二个问题
此错误涵盖了IE特定的行为:https://bugs.jqueryui.com/ticket/8653
这意味着要修复,但似乎Metawidget正在做的事情是触发它。我在这里尝试了一种解决方法:https://github.com/metawidget/metawidget/commit/13f34e22ad71d82f30fb502bfb0a6246c47595a4。
建于:https://kennardconsulting.ci.cloudbees.com/job/Metawidget/371
请测试。