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.
我正在使用 Oracle jdeveloper 11g,使用 JSF。我需要包含 jquery 文件。我的问题是如何将 javascript 文件和 css 文件包含到 jspx 中
谢谢,阿德里安·罗德里格斯
就像在 HTML 中一样包含它们。如果您需要 jquery 副本的动态路径,请使用 jsp 参数。
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
您可以在 jsp 中发出相同的调用,包括将客户端调用保持在一个位置。