请原谅我在许多基础领域缺乏知识,但我只是在学习如何在 java 中创建小程序以及如何允许小程序和网页 (javascript) 之间的交互。
目前我有一个带有init() 和method1() 的小程序。method1() 只返回一个字符串。
小程序加载在网页上,在 javascript 中,我从字面上引用了该函数:
<html>
<head>
<title>Testing Applet</title>
<script>
function hello() {
result = document.wplayer.method1();
alert(result);
}
</script>
</head>
<body>
<applet code = "player.Player" name = "wplayer" archive = "player.jar" width = "600" height = "400">
</applet>
<button onClick="hello();">Interact with app</button>
method1() 只返回一个字符串 ("blah blah blah");
我的问题是,这是一种安全的方法吗?它是最兼容的吗?
谢谢!
缺口