0

我有一个设置为隐藏的段落 <td align="center" colspan="2" ><p id="p2" style="display:none">Invalid values</p></td>

我正在尝试使用 show 将其设置为可见。我的代码中有以下行, (document.getElementById("p2").show(2000);但它没有做任何事情编辑:我有以下脚本

<script type="text/javascript" src="jquery/js/jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="jquery/js/jquery-ui-1.10.0.custom.min.js"></script>

有什么建议么?谢谢

4

1 回答 1

1

如上面的评论所述,使用jQuery的.show()功能:http: //jsfiddle.net/bMWMT/1

$("#p2").show();
于 2013-04-11T19:41:09.280 回答