与Struts的Jquery

时间:2012-09-13 08:36:42

标签: jquery struts2

我们可以直接在struts中使用jquery函数,比如

$(document).ready(function(){
....................
...........
});

或者我们必须使用jquery.jar来遵循标准。我在google上搜索了一个示例和教程,但找不到一个。

3 个答案:

答案 0 :(得分:1)

你可以按照你想要的方式使用它,虽然有一个带有Jquery的插件,如果你想使用那个插件,你需要在你的类路径中添加那个jar,但如果你想独立使用Jquery你可以用那个。

我成功地使用了很多项目。

答案 1 :(得分:0)

是的,您可以直接使用它,前提是您已在构建路径中添加了struts2-jQuery jar,并在JSP <sj:head />标记下的JSP中使用了<head>标记。

<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>

以及head标记下的代码。

<head>
<title>MY TITLE</title>
<sj:head />
</head>

希望这有帮助!

答案 2 :(得分:0)

这是一个例子。您可以将它放在.html或.jsp中 首先,您需要像在代码中一样导入,然后使用API​​。

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>

<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Click me</button>
</body>
</html>