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

为什么按钮不消失?

请问为什么我的代码结果中的按钮不消失呢?

正在回答

2 回答

下面代码是可以的

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=GB18030">

<title>Insert title here</title>

</head>

<body>

<input id="but" type="button" value="创建链接" onclick="createa('http://www.imooc.com','慕课网')" />

<script type="text/javascript">

var main = document.body;

//创建链接

function createa(url,text)

{

    var a = document.createElement("a");

    a.setAttribute("href",url);

    a.innerHTML = text;

    main.appendChild(a);

    var h = document.getElementById("but");

    h.style.display = 'none';

}

// 调用函数创建链接

// main.appendChild(createa("http://www.imooc.com","慕课网"));


</script> 

</body>

</html>


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

慕少8622884 提问者

非常感谢!
2016-01-11 回复 有任何疑惑可以回复我~

你对按钮没有消失的代码操作

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

慕少8622884 提问者

非常感谢!
2016-01-11 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么按钮不消失?

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