<tr><td id="t1">11</td></tr>我用jquery $(“#t1”).html("22");不行, 該怎么樣寫……
2 回答

青春有我
TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超8個(gè)贊
沒問題吧,看是不是其他部分代碼有問題導(dǎo)致的...
<table border="0" cellpadding="0" cellspacing="0"> <tr> <td id="t1"> aa </td> </tr> </table> <script type="text/javascript"> $(function () { $("#t1").html("值已經(jīng)改變了"); }); </script>

ibeautiful
TA貢獻(xiàn)1993條經(jīng)驗(yàn) 獲得超6個(gè)贊
Jquery 1.4.4可以運(yùn)行.
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 關(guān)注
- 3369 瀏覽
添加回答
舉報(bào)
0/150
提交
取消