如果是这样,有人可以指出我的例子吗?甚至一些代码?!
我猜我不能作为嵌入到小工具中的小程序使用以下...
var div = document.getElementById('content_div');
div.innerHTML =
"<applet CODE='http://www.echoecho.com/lake.class' width='370' height='200'>
<param name='image' value='http://www.echoecho.com/sunset.gif' />
</applet>"
......不起作用。也许我过度简化了小工具代码?
** 更新...我的下一次尝试如下,但仍然没有运气...
...
<script src="http://java.com/js/deployJava.js"></script>
<script>
...
// end of code copied from Google's basic counter gadget...
gadgets.util.registerOnLoadHandler(init);
var attributes = {
code:'http://www.....co.uk/wave/applets/DrawingLines.class',
width:'300',
height:'300'} ;
deployJava.runApplet(attributes);
</script>
<input type=button value="Click Me!" id="butCount" onClick="buttonClicked()">
<input type=button value="Reset" id="butReset" onClick="resetCounter()">
]]>
</Content>
</Module>
我刚刚收到带有顶部错误的 Java 错误框:“load: class http://www.....co.uk/wave/applets/DrawingLines.class not found.”。