zoukankan      html  css  js  c++  java
  • JS动态,有选择性的改变div颜色

    JS代码:

    <script language="javascript">
    function check(value)
    {
    document.getElementById(value).style.background= "black";
    }
    </script>

    div处部分代码:

    <div id="1" style=" color:#FFF; 40px; height:40px; float:left; margin-right:10px; text-align:center;line-height:40px;">1</div>
    <div id="2" style=" color:#FFF; 40px; height:40px; float:left; margin-right:10px; text-align:center;line-height:40px;">2</div>
    <div id="3" style=" color:#FFF; 40px; height:40px; float:left; margin-right:10px; text-align:center;line-height:40px;">3</div>
    <div id="4" style=" color:#FFF; 40px; height:40px; float:left; margin-right:10px; text-align:center;line-height:40px;">4</div>
    <div id="5" style=" color:#FFF; 40px; height:40px; float:left; margin-right:10px; text-align:center;line-height:40px;">5</div>

    radio处部分代码,使用onclick()函数调用check(),并加入参数,使得与参数相应的div颜色改变:

    <div class="col-lg-12">
    <p class="question-content">
    <input type="radio" name="optionsRadios1" id="optionsRadios1" value="option1" onclick="check(1);">
    A. 220( m{V})、10( m{A}) 
    </p>
    </div>

  • 相关阅读:
    Python 函数装饰器简明教程
    *arg和**kwarg的区别
    克里金插值
    C语言Hello world
    ibatis错误
    typealias
    视图
    权限分级设置
    走出浮躁的泥沼:学会享受学习过程的乐趣
    R语言 eval(quote(x)) 和 eval(x)
  • 原文地址:https://www.cnblogs.com/ericren/p/4394327.html
Copyright © 2011-2022 走看看