如果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();
}
}