我在页面上有一个小部件,它为源调用另一个脚本。像这样:
<!-- Beginning of widget code. -->
<div id="xyz_widget" ></div>
<script id="bootstrap" type="text/javascript" src="<some location>/bootstrap.js?" charset="utf-8">
</script>
在 bootstrap.js 中存在这个 iframe 代码:
<iframe style='background:transparent;overflow:hidden;border:0px;height:100%;width:100%'
frameborder='0' border='0' marginwidth='0' marginheight='0' "width='100%' height='100%'
allowTransparency='true'
src='"+buildBaseUrl (pUri)+"/widget/widget.jsp?"+pUri.query+"'>
</iframe>
我的问题是我无法在框架内包装长文本。所以 11111111111111111111111111111111111111111111 超出了框架宽度。我试过 word-wrap:break-word 但它没有帮助。
我还应该提到这个问题只存在于 IE 中。FF、Chrome、Safari 一切正常。
有什么帮助吗?