我正在做点什么,现在我没有任何代码,因为我不知道怎么做!请帮帮我:D
我认为如果我可以创建一个改变我风格的密码会很好:
{{1}}
我该怎么办?
答案 0 :(得分:0)
如果我理解你的话,代码看起来像这样:
<html>
<head>
<style>
.passwordProtected {
display:none;
}
</style>
</head>
<body>
<div id="loginArea">
<input type="password">
<button onclick='showDiv();'>Show div</button>
</div>
<div id="passwordprotected" class="passwordProtected">
<h1>This is the protected div they enter</h1>
</div>
<script type="text/javascript">
function showDiv(){
var myDiv = document.querySelector('.passwordProtected');
myDiv.style.display = 'block';
}
</script>
</body>
</html>
&#13;
您可以在此处找到有关使用JavaScript设计样式的更多信息:http://www.w3schools.com/jsref/dom_obj_style.asp。