通过单击 Javascript 中的按钮在表格单元格中设置文本
我有一个问题,我编写了一个代码,我有一个表格,我想在单击按钮时将文本设置为表格中的一个单元格:
<html>
<head>
<script type="text/javascript">
function navratna()
{
var y=document.getElementById("navrat");
y.value="ahoj";
}
</script>
</head>
<body>
<table border="1">
<tr>
<td height="20" width="100" id="navrat">
</td>
</tr>
</table>
<input type="button" value="pokus" onclick="navratna()"/>
</body>
</html>
请问您能帮助我吗?
I have a problem I wrote a code I have a table and I want to set text to one of my cell in table on button click:
<html>
<head>
<script type="text/javascript">
function navratna()
{
var y=document.getElementById("navrat");
y.value="ahoj";
}
</script>
</head>
<body>
<table border="1">
<tr>
<td height="20" width="100" id="navrat">
</td>
</tr>
</table>
<input type="button" value="pokus" onclick="navratna()"/>
</body>
</html>
Please can you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
value
仅是表单元素的属性。你必须使用innerHTML
:还有各种其他属性仅设置文本(这将是最适合您的情况),但它们因浏览器而异。
innerHTML
是最好的跨浏览器方式。value
is a property of form elements only. You have to useinnerHTML
:There are also various other attributes to set only text (which would be the most appropriate in your situation), but they differ from browser to browser.
innerHTML
is the best cross-browser way.您还可以使用
innerText
:You could also use
innerText
:使用
innerHTML
而不是value
。Use
innerHTML
instead ofvalue
.使用
innerHTML
use
innerHTML