如何获取form中的标签
以下代码为什么实现不了:<html><head><title></title><scripttype="text/javascript">document.myform....
以下代码为什么实现不了:<html><head><title></title>
<script type="text/javascript">
document.myform.username.value='hello';
</script>
</head><body>
<form name="myform">
<input type="text" name="username"/>
</form></body></html> 展开
<script type="text/javascript">
document.myform.username.value='hello';
</script>
</head><body>
<form name="myform">
<input type="text" name="username"/>
</form></body></html> 展开
2个回答
展开全部
你的代码也可以,只是因为网页在下载的时候有个自上而下的执行过程,当上面的代码已经执行了,随后才下载后面的代码,java当然是没找到对象啦。你试着给它颠倒顺序,应该是可以:
<html><head><title></title>
</head><body>
<form name="myform">
<input type="text" name="username"/>
</form>
<script type="text/javascript">
document.myform.username.value='hello';
</script>
</body></html>
<html><head><title></title>
</head><body>
<form name="myform">
<input type="text" name="username"/>
</form>
<script type="text/javascript">
document.myform.username.value='hello';
</script>
</body></html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询