为了账号安全,请及时绑定邮箱和手机立即绑定

网页不显示创建的按钮是怎么回事?

复制的源码,为什么我的火狐浏览器还是一片空白

<script type="text/javascript">   var body = document.body;    var input = document.createElement("input");  
  input.type = "button";  
  input.value = "创建一个按钮";  
  body.appendChild(input);  
</script>  

正在回答

2 回答

<script type="text/javascript">   var body = document.body;    var input = document.createElement("input");  
  input.type = "button";  
  input.value = "创建一个按钮";  
  body.appendChild(input);  
</script> 

整体放在<body>标签内就显示了,关于是为什么  我也在问,现在还没有答案

0 回复 有任何疑惑可以回复我~
<html>
    <head>
        <meta charset="UTF-8">
        <title>title</title>
		<script type="text/javascript">
			function add()
			{
				var body = document.body;
				var input = document.createElement("input");  
				input.type = "button";  
				input.value = "创建一个按钮";
				body.appendChild(input);  
			}			
		</script>
    </head>
    <body>
        <input type="button" value="add" onclick="add()"/>
    </body>
</html>


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

网页不显示创建的按钮是怎么回事?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信