使用带有struts的jquery 1.3

时间:2012-01-05 20:14:05

标签: jquery struts tablesorter

我正在尝试在struts 1.3应用程序中使用jquery表分类器。我做了一些在线搜索,看看这是否可行。大多数人说jquery与服务器端是独立的,因此使用带有struts 1.3的jquery没有问题 为什么struts 2中有jquery标签呢? 更重要的是,tablesorter对我不起作用。我在调试中在firefox中运行了应用程序,似乎domument.ready返回false并跳过$(“#RatingTable”)。tablesorter();线!有谁知道为什么以及如何使这项工作?

<head>
<title>Contractor Profile</title>       
<link rel="stylesheet" type="text/css" href="CSS/style.css" />  
<script type="text/javascript" src="Javascript/jquery-1.7.js"></script>       
<script type="text/javascript" src="Javascript/jquery.tablesorter.js"></script>
<script type="text/javascript">            
$(document).ready(function()                 
{                     
    $("#RatingTable").tablesorter();                
}
); 
</script> 
</head>
<body>
<%@include  file="Includes/header.jsp" %>        
<html:form action="/contractorDetail"  >
   .......

0 个答案:

没有答案