Re: [問題] 有關 java VS. javascript 通訊問題
這個,我在Windows的IE與Firefox測過,可以讓JS與Applet溝通,
不過在Ubuntu的Firefox,錯誤主控台會寫 "document app.f is not a function"
<applet name="app" code="applet.class"></applet>
<script>
alert(document.app.f("50"));
</script>
import java.awt.*;
import java.applet.*;
public class applet extends Applet {
private int a;
public void paint(Graphics g) {
g.drawString(Integer.toString(a), 50, 50);
}
public String f(String x) {
a = Integer.parseInt(x);
a += 5;
repaint();
String b = Integer.toString(a);
return b;
}
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.160.213.34
※ 編輯: ephesians 來自: 218.160.213.34 (05/05 16:39)
討論串 (同標題文章)
Ajax 近期熱門文章
PTT數位生活區 即時熱門文章