Looks like
JSObject jsobj = (JSObject) webEngine.executeScript("window");
jsobj.setMember("java", new Bridge());
only works after the document has been loaded.
This prevents using java objects during the initial page load
<!DOCTYPE html>
<html>
<head>
<script>
- java objects can not be used here
</script>
<body>
<script>
- or here -
</script>
</body>
</html>
Same discussion on the comments here: https://blogs.oracle.com/javafx/entry/communicating_between_javascript_and_javafx
JSObject jsobj = (JSObject) webEngine.executeScript("window");
jsobj.setMember("java", new Bridge());
only works after the document has been loaded.
This prevents using java objects during the initial page load
<!DOCTYPE html>
<html>
<head>
<script>
- java objects can not be used here
</script>
<body>
<script>
- or here -
</script>
</body>
</html>
Same discussion on the comments here: https://blogs.oracle.com/javafx/entry/communicating_between_javascript_and_javafx
- relates to
-
JDK-8123845 JavaScript 2 Java bridge: binding is no longer persistent between page reloads
-
- Closed
-