⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 27-3c.js

📁 java应用代码和章节代码。各种功能实现效果。很值
💻 JS
字号:
// Pass "<type>/<subtype>" and plug-in name strings for this
// function to see if both the MIME type and plug-in are
// registered with this browser, and that the plug-in is
// enabled for the desired MIME type.
function mimeAndPluginReady(mime_type,plug_in) {
 if (mimeIsReady(mime_type)) {
  var plugInOfRecord = navigator.mimeTypes[mime_type].enabledPlugin;
  plug_in = plug_in.toLowerCase();
  for (var i = 0; i < navigator.plugins.length; i++) {
   if (navigator.plugins[i].name.toLowerCase().indexOf(plug_in) != -1) {
    if (navigator.plugins[i] == plugInOfRecord) {
     return true;
    }
   }
  }
 }
 return false;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -