js改变table中td的值

来源:互联网 发布:数控铣编程软件 编辑:程序博客网 时间:2024/05/14 03:37
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><table id='mytable'><tbody><tr><td id='mytd'>这里是td的值</td></tr></tbody></table><br /><input type='button' value='绝对路径获取td的值' onclick='getTdDirectly()' /><script>function getTdDirectly(){var tdobj = document.getElementById('mytd');tdobj.innerText = "ssss";}</script>
</pre><pre name="code" class="html">

0 0
原创粉丝点击