JavaScript:为spesefic div创建密码

时间:2015-11-12 19:58:57

标签: javascript passwords

我正在做点什么,现在我没有任何代码,因为我不知道怎么做!请帮帮我:D

我认为如果我可以创建一个改变我风格的密码会很好:

{{1}}

我该怎么办?

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;
&#13;
&#13;

您可以在此处找到有关使用JavaScript设计样式的更多信息:http://www.w3schools.com/jsref/dom_obj_style.asp