<tr><td id="t1">11</td></tr>我用jquery $(“#t1”).html("22");不行, 该怎么样写……
2 回答
青春有我
TA贡献1784条经验 获得超8个赞
没问题吧,看是不是其他部分代码有问题导致的...
<table border="0" cellpadding="0" cellspacing="0"> <tr> <td id="t1"> aa </td> </tr> </table> <script type="text/javascript"> $(function () { $("#t1").html("值已经改变了"); }); </script>
ibeautiful
TA贡献1993条经验 获得超5个赞
Jquery 1.4.4可以运行.
1 <html>
2 <head>
3 <title>Jquery Test</title>
4 <script type="text/javascript" src="Scripts/jquery-1.4.4.min.js"></script>
5 <script type="text/javascript">
6 $(function () {
7 $('#t1').html("22");
8 });
9 </script>
10 </head>
11 <body>
12 <table><tr><td id="t1">11</td></tr></table>
13 </body>
14 </html>
- 2 回答
- 0 关注
- 3325 浏览
添加回答
举报
0/150
提交
取消