我已经创建了一个示例 jsf 应用程序,并且正在尝试使用 jquery。jquery.js 文件应该位于哪个目录中?网络信息?源代码?我下载了 .js 文件,但它似乎不起作用。我不确定它应该在哪里。
我已更新我的代码以指向 googleapis,但它仍然无法正常工作:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js">
$(document).ready(function(){
$("#p1").mouseenter(function(){
alert("You entered p1!");
});
});
</script>
<p id="p1">Enter this paragraph.</p>
</h:body>