1. window.flashView=function(flash_url){
  2. var html='';
  3. html+='<div id="obj_flash_div">';
  4. html+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1005px" height="460px" id="Lottery">';
  5. html+=' <param name="movie" id="f_movie" value="'+flash_url+'" />';
  6. html+=' <param name="quality" value="high" />';
  7. html+=' <param name="bgcolor" value="#ffffff" />';
  8. html+=' <param name="wmode" value="Opaque"/>';
  9. html+=' <param name="allowScriptAccess" value="sameDomain" />';
  10. html+=' <param name="allowFullScreen" value="true" />';
  11. html+=' <param name="quality" value="high">';
  12. html+=' <!--[if !IE]>-->';
  13. html+=' <object type="application/x-shockwave-flash" id="s_movie" data='+flash_url+'width="1005px" height="460px">';
  14. html+=' <param name="quality" value="high" />';
  15. html+=' <param name="bgcolor" value="#ffffff" />';
  16. html+=' <param name="allowScriptAccess" value="sameDomain" />';
  17. html+=' <param name="allowFullScreen" value="true" />';
  18. html+=' <param name="wmode" value="Opaque"/>';
  19. html+=' <!--<![endif]-->';
  20. html+=' <!--[if gte IE 6]>-->';
  21. html+=' <p> ';
  22. html+=' Either scripts and active content are not permitted to run or Adobe Flash Player version';
  23. html+=' 11.4.0 or greater is not installed.';
  24. html+=' </p>';
  25. html+=' <!--<![endif]-->';
  26. html+=' <a href="http://www.adobe.com/go/getflashplayer">';
  27. html+=' <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash                           Player" />';
  28. html+=' </a>';
  29. html+=' <!--[if !IE]>-->';
  30. html+=' </object>';
  31. html+=' <!--<![endif]-->';
  32. html+=' </object>';
  33. html+='</div>';
  34. html+='';
  35. return html;
  36. }

  

浏览器中显示视频,flash等的代码处理的更多相关文章

  1. js new Date("2016-07-01 08:00:00") 格式在IE内核浏览器中显示NaN的问题

    js new Date("2016-07-01 08:00:00") 格式在IE内核浏览器中显示NaN的问题 废话就不多了,var dd = new Date("2016 ...

  2. 解决Ext.form.DateField在浏览器中显示可能有问题

    解决Ext.form.DateField在浏览器中显示可能有问题,界面将会拉的很长很长.如下图:  办法: 1:设置css的长度 .x-date-menu { padding-top:2px;padd ...

  3. myeclipse中的HTML页面在浏览器中显示为乱码

    myeclipse中的HTML页面在浏览器中显示为乱码 在通过myeclipse开发项目的过程中,如果用HTML页面书写前端,可能出现中文乱码现象,需要怎么解决呢?下面是我从网上搜的方法: 解决办法: ...

  4. IPython notebook在浏览器中显示不正常的问题及解决方法

    使用过Python的童鞋们应该知道IPython是一个比python自带的交互式界面更加友好的交互界面,IPython提供了自动补齐什么的,其实我还没开始用所以这里也不扯淡了,大家自己去网上查,IPy ...

  5. 项目自动化建构工具gradle 入门4——javaWeb在浏览器中显示helloWorld

    在java应用中,其实做的最多的还是java web应用.所以现在我们做的就是用gradle构建一个简单的web项目,简单点,直接上代码吧. 1.进入目录D:\work\gradle\web,新建文件 ...

  6. 托管到github上的网页图片在百度浏览器中显示不全

    这几天做了个较完整的网页放到github上,上传后看网页效果. 在Firefox浏览器中,显示正常. 在百度浏览器中,空了一大块位置(图片位置),偏偏只空了这一块,其它地方的图片都好好的. 点击f12 ...

  7. 在chrome浏览器和在IE浏览器中显示的页面样式不一样的解决办法

    在IE浏览器中添加 一行代码即可:<meta http-equiv="X-UA-Compatible" content="IE=edge" /> 位 ...

  8. dtd文件中写的引用实体被xml文件引用后无法在浏览器中显示的问题

    解决方案:把dtd文件由被xml文件外部引用改成被xml文件内部引用. 例子: 1.xml文件: <?xml version="1.0" encoding="UTF ...

  9. C++ CEF 浏览器中显示 Tooltip(标签中的 title 属性)

    在 Windows 中将 CEF 集成到 C++ 客户端以后,默认是无法显示 tooltip 的,比如图片标签中的 title 属性. 实现的方式其实很简单,按下面的步骤操作就可以: 创建一个文本文件 ...

随机推荐

  1. 重新学struct,边界对齐,声明……与Union的区别

    在内存中,编译器按照成员列表顺序分别为每个结构体变量成员分配内存,当存储过程中需要满足边界对齐的要求时,编译器会在成员之间留下额外的内存空间. 如果想确认结构体占多少存储空间,则使用关键字sizeof ...

  2. python检测文件是否更新

    import os import time filename = "test.txt" info = os.stat(filename) if time.time()-info.s ...

  3. 【leetcode】Intersection of Two Linked Lists(easy)

    Write a program to find the node at which the intersection of two singly linked lists begins. For ex ...

  4. java thread类和runable

    java thread 类其实和其他类是一样的.有自己的属性和方法.以及有一个重写的run方法 不同的是:必须重写run()方法. run()方法是线程thread启动后cpu调用运行的程序代码. r ...

  5. 188. Best Time to Buy and Sell Stock IV

    题目: 链接: 题解: 测试: Reference:

  6. 91. Decode Ways

    题目: A message containing letters from A-Z is being encoded to numbers using the following mapping: ' ...

  7. CHtmlView类的中文介绍

    http://zhidao.baidu.com/link?url=h8FaKA6FMNXzYJu_XO-_buBxuGdM0jozKUSVv6pgEPsvhTB2-xLltH-jVLDDJKMBAkn ...

  8. 'ascii' codec can't encode characters in position 0-8: ordinal not in range(128)的解决办法

    使用的python2.7,运行的时候出现了'ascii' codec can't encode characters in position 0-8: ordinal not in range(128 ...

  9. CodeForces Round #286 Div.2

    A. Mr. Kitayuta's Gift (枚举) 题意: 给一个长度不超过10的串,问能否通过插入一个字符使得新串成为回文串. 分析: 因为所给的串很多,所以可以枚举 “在哪插入” 和 “插入什 ...

  10. bzoj3940: [Usaco2015 Feb]Censoring

    AC自动机.为什么洛谷水题赛会出现这种题然而并不会那么题意就不说啦 .终于会写AC自动机判断是否是子串啦...用到kmp的就可以用AC自动机水过去啦 #include<cstdio> #i ...