欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

JavaScript初级教程(第五课续)第1/3页

时间:2020-11-09 18:33:16|栏目:JavaScript代码|点击:
    在JavaScript中单选框的用法和复选框相似。不同之处在于HTML中的应用。复选框是一种开关。如果一个复选框被选中,你可以再点击后取消选取. 但如果单选框被选中,则只能通过选取另外一个单选框才能取消对该单选框的选取。例:

    Larry
    Moe
    Curly

    在该例中,如果你打算取消对一个单选框的选取,你必须点击另一个单选框。再看下面的程序:

    Light off
    Light on

    表单代码如下:

    <form name="form_1">
        <input type="radio" name ="radio_1" onClick="offButton();">Light off
        <input type="radio" name ="radio_2" onClick="onButton();" checked>Light on
    </form>

    当第一个单选框被选中时,函数offButton() 被调用。函数如下: 

    function offButton()
    {
        var the_box = window.document.form_1.radio_1;

        if (the_box.checked == true)
        {
            window.document.form_1.radio_2.checked = false;
            document.bgColor='black';
            alert("Hey! Turn that back on!");
        }
    }

    这个例子很象前面的复选框例子,主要的区别在于该行: 

    window.document.form_1.radio_2.checked = false;

    该行指令指示JavaScript在该按钮被点击时关闭另外一个按钮。由于另外一个按钮的函数同这个很相似:

    function onButton()
    {
        var the_box = window.document.form_1.radio_2;

        if (the_box.checked == true)
        {
            window.document.form_1.radio_1.checked = false;
            document.bgColor='white';
            alert("Thanks!");
        }
    }

上一篇:AJAX实现图片预览与上传及生成缩略图的方法

栏    目:JavaScript代码

下一篇:webpack之引入图片的实现及问题

本文标题:JavaScript初级教程(第五课续)第1/3页

本文地址:http://www.codeinn.net/misctech/20808.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有