我新发现了 javafx2 并开始使用它。但是,我在教程中感到困惑和迷失(尝试做蚂蚁但失败了:)但这是另一个问题)。
所以,我可以用 JavaFx-2 做一些很酷的事情,而且我真的很喜欢媒体播放器的“简单性”。所以,我只想使用 HTML、Java 和 CSS。有什么办法吗?
我可以从 HTML 调用 javafx2 函数吗?
感谢您的建议和回复。
要求更新;例如,嵌入在 html 中的 javascript 函数。我从http://www.simplehtmlguide.com/javascript.php c/p'd
<html>
<head>
<script type="text/javascript">
function functionOne() { alert('You clicked the top text'); }
function functionTwo() { alert('You clicked the bottom text'); }
</script>
</head>
<body>
<p><a href="#" onClick="functionOne();">Top Text</a></p>
<p><a href="javascript:functionTwo();">Bottom Text</a></p>
</body>
</html>
现在我可以用 javafx2 做同样的事情吗?我可以直接从html中引用它的功能吗?