Macos 如何检查我们是否可以在iphone上运行插件?我们可以用模拟器检查吗?

Macos 如何检查我们是否可以在iphone上运行插件?我们可以用模拟器检查吗?,macos,plugins,safari,webkit,Macos,Plugins,Safari,Webkit,如何检查我们是否可以在iphone上使用插件?我们可以使用模拟器进行检查并确保它将在设备上运行吗?我的插件在mac上成功运行 现在,这段代码可以在mac上的safari上运行,但不能在模拟器上的safari上运行。有人能告诉我为什么吗 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0 Transitional//EN" "http://www.w3.org/TR/1999 /REC-html401-19991224/loose.dtd">

如何检查我们是否可以在iphone上使用插件?我们可以使用模拟器进行检查并确保它将在设备上运行吗?我的插件在mac上成功运行

现在,这段代码可以在mac上的safari上运行,但不能在模拟器上的safari上运行。有人能告诉我为什么吗

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0 Transitional//EN" "http://www.w3.org/TR/1999  /REC-html401-19991224/loose.dtd">
   <html>
  <head>
   <title>Sample Speaking Plug-In</title>

  <script LANGUAGE="JavaScript">

   function print() 
 {
    alert("running"+ document.getElementById('printid'));
//var plugin = document.embeds[0];
var plugin = document.getElementById('printid');
var data = plugin.myPrint();
alert(data);
(document.getElementById('t1')).value = data;
 }

  </script> 
</head>


   <body>

<!-- <embed  name="print" width="200px" height="400px" type="application/x-printText"     ></embed> -->
 <object type="application/x-printText" name="print1" id="printid" width="200px"   height="400px">
  </object>
<input type = "text" value = "horse" id="t1"/>
    <input type="button" value="print" onClick="print()"/>

  </body>

 </html>

示例语音插件
函数打印()
{
警报(“正在运行”+document.getElementById('printid');
//var plugin=document.embeds[0];
var plugin=document.getElementById('printid');
var data=plugin.myPrint();
警报(数据);
(document.getElementById('t1')).value=data;
}

手机safari没有插件。只有mac才可以使用它。希望我能找到一些替代移动safari插件的方法