在ie 下面,用iframe 加载 http://baidu.com,会正常显示。
可是在firefox下面,显示的是:
<html><head>
<meta content="0;url=http://www.baidu.com/" http-equiv="refresh">
</head><body></body></html>
怎么样,才能在firefox 下面实现自动刷新。正常跳到 www.baidu.com
你的书写不符合W3C规范,火狐是标准浏览器,你应该这么写,加上一些额外的声明:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<meta content="0;url=http://www.baidu.com/" http-equiv="refresh">
</head>
<body>
</body>
</html>
你想实现什么,上面的代码不已经实现了吗。
跳转使用JS。
如果按照你补充的问题的话、你就需要在你的iframe 赋值src 直接用js 或者c#写一个处理器类。来处理这些不规范url,补充或者分析一下。比如有没有www.没有就加上。