JavaFX HTMLEditor禁用超链接重定向

时间:2016-02-22 07:51:11

标签: java javafx webview hyperlink html-editor

有没有办法阻止URLLoader处理程序获取JavaFX HTMLEditor中的超链接?

我正在寻找类似CSS标签pointer-events: none;

的效果

或者是否可以从HTMLEditor中删除URLLoader EventHandler?

HTMLEditor view

view after clicking on hyperlink

1 个答案:

答案 0 :(得分:1)

我不知道这是否是您要寻找的东西,但是这停止了htmlEditor中的超链接。

Node webNode = htmlEditor.lookup(".web-view");
WebView webView = (WebView) webNode;
webView.getEngine().setCreatePopupHandler((PopupFeatures config) -> null);