cmd > java -version
Java Version : "1.7.0_11" (Updated)
Java(TM) SE Runtime Environment (build 1.7.0_11-b21)
Java HotSpot(TM) Client VM (build 23.6-b04, mixed mode, sharing)
浏览器 = IE7、IE8、IE9
(它在 Google Chrome 和 FF 中完美运行,但我需要它使用 Internet Explorer 来实现公司想要的。)
我目前正在做一些事情,但我没有找到解决问题的方法:
Object doesn't support this property or method
我已经在互联网上搜索过,并尝试了所有可能的方法来修复它,比如降低 IE 安全性、自定义安全级别、重新安装 Java 等,但仍然没有运气。
<html>
<head>
<title>Clipboard image demo</title>
<script type="text/javascript">
function loadApplet() {
// Deferred load to display text first
document.getElementById("applet").innerHTML = '<object id="paste-image" classid="java:PasteImageApplet.class" type="application/x-java-applet" archive="tst.jar" width="1" height="1" ></object>';
}
function getImage() {
obj = document.getElementById('paste-image');
postTo = "Http://Path/To/File/shoot.php"; // Change this to your URL
image = obj.getClipboardImageURL(postTo);
if (image) {
url = "shots/" + image;
document.getElementById("target").src = url;
document.getElementById("url").value = document.getElementById("target").src; // to get full path, hack, I know ;)
document.getElementById("container").style.display = "";
}
}
</script>
<body onLoad="loadApplet();">
<p>
<div id="applet"></div>
<input type="button" value="Paste it!" onClick="getImage();">
</p>
<div id="container" style="display: none;">
<input type="text" id="url" style="width: 700px;"><br />
<iframe id="target" width="700" height="400"></iframe>
</div>
</body>
</html>
任何帮助将不胜感激。