zoukankan      html  css  js  c++  java
  • IE浏览器下,IE默认限制ActivX插件运行处理

    解决:为了有利于保护安全性,IE已限制此网页运行可以访问计算机的脚本或 ActiveX 控件
    有时做网页,在IE里预览时,如果你的HTML包含javascript脚本,那
    么IE会在加载页面的时候在地址栏下面显示一个信息栏:“为了有利
    于保护安全性,IE已限制此网页运行可以访问计算机的脚本或
    ActiveX 控件。请单击这里获取选项...”这个东西很烦人的。
    解决方法有以下两个:
    1. 如果你的HTML文件中有下面这句话
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns="http://www.w3.org/TR/REC-html40">
    那直接加入下面这句话就行了;
    <!-- saved from url=(0022)http://blog.csdn.net/electroniXtar/ -->
    2. 如果没有的话.用下面这两句
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
    transitional.dtd">
    <!-- saved from url=(0022)http://blog.csdn.net/electroniXtar/ -->
    记住要放在<head>的前面. (url=(0022) 0022是十六进制数,表示后面的域名的字符数)

  • 相关阅读:
    canvas-8clip.html
    canvas-7globleCompositeOperation2.html
    canvas-7globleCompositeOperation.html
    canvas-7global.html
    canvas-6shadow.html
    canvas-6font.html
    A1036. Boys vs Girls
    A1006. Sign In and Sign Out
    A1011. World Cup Betting
    String 对象-->charAt() 方法
  • 原文地址:https://www.cnblogs.com/ssyz1988/p/3517553.html
Copyright © 2011-2022 走看看