一般的浏览器中是无法通过js调用本地java程序的,但是可以调用嵌入到网页的applet的方法。交互方式如下:
<applet codebase = "." width = "400" height = "400"竖穗陪name= "MyApplet" code = "test.applets.MyApplet1.class">
<script>
// js访问applet属性:余蠢document.appletName.appletField (属性必须是public的)
// js访问Applet方法:document.appletName.appletMethod (方法必须是public的)
function showLable{
族派 // 调用test.applets.MyApplet1类的invokeByJS方法
document.applets["MyApplet"].invokeByJS('myvalue')
}
</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)