问题描述
最近想用下jquery的tablesorter但是找了很多例子,都运行的没效果:代码如下,另存为html用IE9,Chrome,FF都没有效果,是不是需要装个啥的?<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><scriptsrc="http://code.jquery.com/jquery-latest.js"></script><script>$(document).ready(function(){$("#example").tablesorter({sortList:[[0,0],[2,1]],widgets:['zebra']});});</script></head><body><linkrel="stylesheet"href="http://dev.jquery.com/view/trunk/themes/flora/flora.all.css"type="text/css"media="screen"title="Flora(Default)"><scriptsrc="http://dev.jquery.com/view/trunk/plugins/tablesorter/2.0/jquery.tablesorter.js"></script><tableid="example"class="tablesorter"border="0"cellpadding="0"cellspacing="1"><thead><tr><th>FirstName</th><th>LastName</th><th>Age</th><th>Total</th><th>Discount</th><th>Date</th></tr></thead><tbody><tr><td>Peter</td><td>Parker</td><td>28</td><td>$9.99</td><td>20%</td><td>Jul6,20068:14AM</td></tr><tr><td>John</td><td>Hood</td><td>33</td><td>$19.99</td><td>25%</td><td>Dec10,20025:14AM</td></tr><tr><td>Clark</td><td>Kent</td><td>18</td><td>$15.89</td><td>44%</td><td>Jan12,200311:14AM</td></tr><tr><td>Bruce</td><td>Almighty</td><td>45</td><td>$153.19</td><td>44%</td><td>Jan18,20019:12AM</td></tr><tr><td>Bruce</td><td>Evans</td><td>22</td><td>$13.19</td><td>11%</td><td>Jan18,20079:12AM</td></tr></tbody></table></body></html>
解决方案
解决方案二:
怎么木有回复。。再补充一下:在IE9中提示:“行:9错误:对象不支持“tablesorter”属性或方法”页面上能显示出来,但是点击了表头木有反应。。求大虾。
解决方案三:
<scriptsrc="http://dev.jquery.com/view/trunk/plugins/tablesorter/2.0/jquery.tablesorter.js"></script>放于scriptsrc="http://code.jquery.com/jquery-latest.js"></script>后呢?
解决方案四:
遇到同样的问题发现导入的js库不对下载jquery.tablesorter.min.js,jquery-1.3.2.js就可以了