美文网首页
2019-04-10js【】的使用

2019-04-10js【】的使用

作者: 果冻_4c9b | 来源:发表于2019-04-17 08:30 被阅读0次
       <!DOCTYPE html>
         <html>
             <head>
            <meta charset="utf-8">
            <title></title>
            <style type="text/css">
                #box{
                    width: 100px;
                    height: 100px;
                    border: 1px black solid ;   
                }
            </style>
        </head>
        <body>
            
            <!-- 【】  完全等同于‘.’ -->
            <p>
            <input id="ip1" type="text">
            <input id="ip2" type="text">
            <button type="button" id="btn">改变</button>
            </p>
            <div id="box">
                
            </div>
            
            <script type="text/javascript">
                var obox = document.getElementById('box');
                var obtn = document.getElementById('btn');
                var oip1 = document.getElementById('ip1');
                var oip2 = document.getElementById('ip2');
                obtn.onclick=function(){
                    obox.style[oip1.value]=oip2.value;
                }
            </script>
        </body>
    </html>
    

    相关文章

      网友评论

          本文标题:2019-04-10js【】的使用

          本文链接:https://www.haomeiwen.com/subject/avnoiqtx.html