gpt4 book ai didi

button - 如何使用WebView和WebEngine对JavaFX中的“后退”和“前进”按钮进行编程?

转载 作者:行者123 更新时间:2023-12-04 16:29:16 27 4
gpt4 key购买 nike

我正在学习JavaFX,试图编写一个简单的浏览器,但是如何使用WebView和WebEngine在JavaFX中编写“后退”和“前进”按钮?任何示例代码?

最佳答案

如果您不需要获取或设置任何索引,这是使用javascript编写自定义contextMenu的后退和前进按钮的一种简洁方法:

public void goBack() {
Platform.runLater(() -> {
webEngine.executeScript("history.back()");
});
}

public void goForward() {
Platform.runLater(() -> {
webEngine.executeScript("history.forward()");
});
}

关于button - 如何使用WebView和WebEngine对JavaFX中的“后退”和“前进”按钮进行编程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18928333/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com