我们生成html文件以在浏览器上显示swf。以下是我们的HTML代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- saved from url=(0021)http://www.domain_name.com -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Keywords" content="xxxxx">
<meta name="Description" content="">
<title>test</title> // Title Of The HTML
<link rel="image_src" href="edge05_thumb.png">
<link rel="viewlet" href="edge05.swf"> // SWF
<script language="javascript" type="text/javascript">
<!--
document.onhelp=new Function("return false");
window.onhelp=new Function("return false");
// -->
</script>
...
</html>
此代码适用于所有其他浏览器,但在Edge上显示白屏。根据我的分析,我发现每当我删除第二行(saved from url=(0021)http://www.domain_name.com)
上的评论时,它都可以正常工作。
我尝试在html中添加评论但是没有用。
答案 0 :(得分:0)
我很确定这与你在最后评论部分的链接有关。
替换它:
<script language="javascript" type="text/javascript">
<!--
document.onhelp=new Function("return false");
window.onhelp=new Function("return false");
// -->
</script>
由此:
<script language="javascript" type="text/javascript">
<!--
document.onhelp=new Function("return false");
window.onhelp=new Function("return false");
-->
</script>