IE iframe 中 js 的 cookie 读写不到的解决办法
生活随笔
收集整理的這篇文章主要介紹了
IE iframe 中 js 的 cookie 读写不到的解决办法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
1.看這里(改服務器配置)
http://www.cr173.com/html/16696_1.html
?
?
2.使用object模擬iframe,不使用iframe框架
<html> <head> ????<meta?http-equiv="content-type"?content="text/html;?charset=gb2312"/> ????<meta?http-equiv="Content-Script-Type"?Content="text/javascript"/> ????<meta?http-equiv="Content-Style-Type"?content="text/css"/> ????<meta?http-equiv="Author"?content="Langtse"/> ????<title>使用Object實現Iframe功能</title> ????? ????<style> ????#iframe{border:1px?solid?silver;width:640px;height:480px;padding:2px;} ????object{border:1px?solid?silver;width:638px;height:478px;} ????</style> ?????? ????<script> ????function?btnClick(sUrl){ ??????var?ifra=document.getElementById("iframe"); ??????ifra.innerHTML='<object?id="obj1"?type="text/html"?data="'+sUrl+'"></object>'; ????} </script> ????<script> ????? ????</script> </head> <body> ????<form> ????<input?name="url"?size="60"?type="text"?value="login.html"?/> ????<input?type="button"?onClick="btnClick(this.form.url.value);"?value="打開網頁"?/> ????</form> ?? ????<div?id="iframe"><p>使用Object實現Iframe功能</p>這里顯示你打開的頁面內容</div> </body> </html>轉載于:https://www.cnblogs.com/liupengfei19940119/p/3998563.html
總結
以上是生活随笔為你收集整理的IE iframe 中 js 的 cookie 读写不到的解决办法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Bootstrap3免费单页面模板-Sh
- 下一篇: KMP简单应用