1
如何檢查我們是否可以在iphone上使用插件?我們可以使用模擬器進行檢查並確保它可以在設備上運行嗎?我的插件在Mac上成功運行。如何檢查我們是否可以在iphone上運行插件?我們可以使用模擬器來檢查嗎?
現在這段代碼可以在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>