页面中iframe中嵌入一个跨域的页面,让这个页面按照嵌入的页面宽高大小显示的方式;iframe嵌套的页面不可以编辑的问题解决方案

来源:互联网 发布:腾讯游戏有mac版吗 编辑:程序博客网 时间:2024/05/29 03:41
<html><head><style>body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;overflow: hidden;}</style></head><body><iframe src="http://gongkai.kaipuyun.cn/databaseInfo/index" width='100%' height='100%' frameborder='0' name="_blank " id="_blank "></iframe></body></html>

效果图:



当发现一个iframe嵌套的页面不可以编辑的时候,解决办法是:

<html><head>  </head><body><iframe src=""001.htm"" id=""SendMsg""  width=""100%"" height=""120px"" ></iframe><script>  document.getElementById(""SendMsg"").contentWindow.document.body.contentEditable= "true";   </script></body></html>


0 0
原创粉丝点击