我在index.html中有一个按钮,请打开该html,并希望使用该按钮执行点击操作,然后将其重定向到其他页面

时间:2018-07-24 06:38:53

标签: java

如果index.html中的按钮具有ID,那么如何使用该ID在Java应用程序中调用该按钮的onclick。 这是Java代码:

public class Abcd extends Application {

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

  @Override
  public void start(Stage primaryStage) {
    primaryStage.setTitle("fdg");
    StackPane root = new StackPane();

    webView = new WebView();
    webEngine = webView.getEngine();
    URL urlHello = getClass().getResource("/2/index.html");
    webEngine.load(urlHello.toExternalForm());
    root.getChildren().add(webView);
    scene = new Scene(root);
    primaryStage.setScene(scene);
    primaryStage.show();            
  }
}

0 个答案:

没有答案