1

我正在尝试从 javascript 调用 JApplet 函数,但它不起作用。

这是我的小程序的代码:

public class Main extends JApplet implements ActionListener {
    private static final long serialVersionUID = 1L;
    private JTextArea m_textArea;
    private JButton m_button;
    public String mypublicvariable = "foo";

    public Main() {
        this.setLayout(null);

        m_textArea = new JTextArea();
        m_textArea.setBounds(25, 25, 200, 100);
        m_textArea.setText("some value");
        getContentPane().add(m_textArea);

        m_button = new JButton("crypt");
        m_button.setBounds(25, 150, 100, 20);
        m_button.addActionListener(this);
        getContentPane().add(m_button);
    }

    public static void main(String[] args) {
        new Main();
    }

    @Override
    public void actionPerformed(ActionEvent arg0) {
        if(arg0.getSource().equals(m_button)) {
            m_textArea.setText("worked");
        }
    }

    public void doSomething() {
        m_textArea.setText("sdlkjfdöjdlkjfsfsyfhudjfdsfj");
    }
}

这是我的 HTML 代码:

<!DOCTYPE HTML>
<html>
    <head>
    </head>
    <body>
        <applet name="TestApplet" id="TestApplet" code="main.Main" archive="test.jar" width="500" height="500" />
        <script>
            console.warn(document.TestApplet.mypublicvariable);

            document.TestApplet.doSomething();
        </script>
    </body>
</html>

我既没有得到我的公共变量(未定义)的值,也不能调用我的公共函数(document.TestApplet.doSomething 不是函数)。为了清楚起见,我将 Main 类的整个项目导出为 jar 文件,并将其命名为 test.jar。我的 Main 类位于 main 包中。

4

1 回答 1

0

小程序元素无效。它从来都不是一个自动关闭的元素。为了稳健起见,它应该声明scriptable标志。

于 2013-07-03T22:22:12.730 回答