没问题吧,看是不是其他部分代码有问题导致的...
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td id="t1">
aa
</td>
</tr>
</table>
<script type="text/javascript">
$(function () {
$("#t1").html("值已经改变了");
});
</script>
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>
为什么上面的代码直接弄成html文件,用来浏览器打开不行呢?