Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法销毁 WebView 实例?如果页面加载,并说视频开始播放,我希望能够在隐藏 WebView 时基本上销毁它,或者至少重置它。我知道我可以听 visibleProperty 并执行 getEngine().load() 但我想知道是否有更好的方法。此外,仅当实际执行 webView.setVisible(false) 时,visibleProperty 才会更改,对吗?例如,它不会跟踪 webview 的父节点是否不可见。感谢你的帮助。
如果这对某人有帮助,
webView.getEngine().load(null);
似乎在做伎俩,这就是我现在正在使用的。