E eguy Unregistered / Unconfirmed GUEST, unregistred user! 2000-12-14 #2 如果在HTML中的applet标签里,被调用的applet的name参数的值为appletA,类型为MyApplet 其有一个方法为say();则在调用者(另一个Applet)的code可以为: MyApplet appl = (MyApplet) getAppletContext().getApplet("appletA"); if (null != appl) { appl.say("Hello there!"); } 这样appletA能说话了,画一个圆当然也不在话下。
如果在HTML中的applet标签里,被调用的applet的name参数的值为appletA,类型为MyApplet 其有一个方法为say();则在调用者(另一个Applet)的code可以为: MyApplet appl = (MyApplet) getAppletContext().getApplet("appletA"); if (null != appl) { appl.say("Hello there!"); } 这样appletA能说话了,画一个圆当然也不在话下。
C coobo Unregistered / Unconfirmed GUEST, unregistred user! 2000-12-14 #3 差句嘴: Applet与JavaScript互相怎么来通信?
Z zhfhq Unregistered / Unconfirmed GUEST, unregistred user! 2000-12-14 #4 to coobo: 你可以去看看Java Script的语法 ,又专门调用Applet的 。