对于无线电输入类型onclick事件在表单标记内不起作用

时间:2013-08-21 09:41:30

标签: javascript

我坚持认为是愚蠢的。但是现在我已经尝试了所有组合,但却无法知道发生了什么。

当我在表单中放入输入类型时,输入类型无线电中的

onclick不起作用。但是当我删除表单标签时,它可以工作。此外,我还看到了一个代码,其中onclick在表单标记内部工作但在我写入时不起作用。

这不起作用:

<html>
<head>
    <script>
    function action(str){
        document.getElementById("test1").innerHTML=str
    }
    </script>
</head>
<body>
    <form>
        <input type="radio" value="ping" name="rb" onclick="action(this.value)">Ping
        <input type="radio" value="card" name="rb" onclick="action(this.value)">Card
        <input type="radio" value="temp" name="rb" onclick="action(this.value)">Temprature
        <p id="test1">radio will be displayed here</p>
    </form>
</body>
</html>

当我删除表单时,它可以正常工作。

3 个答案:

答案 0 :(得分:2)

更改您的函数名称action

试试这个:

<html>
<head>
<script type="text/javascript">
    function action123(str){
        document.getElementById("test1").innerHTML=str
    }
</script>
</head>
<body>
<form>
    <input type="radio" value="ping" name="rb" onclick="action123(this.value);">Ping
    <input type="radio" value="card" name="rb" onclick="action123(this.value);">Card
    <input type="radio" value="temp" name="rb" onclick="action123(this.value);">Temprature
    <p id="test1">radio will be displayed here</p>
</form>
</body>
</html>

答案 1 :(得分:1)

您不应再使用内联事件功能。使用事件监听器:

radios = document.getElementsByName("rb");
for(i=0; i<radios.length; i++) {
    radios[i].addEventListener('click', function(e){
       document.getElementById("test1").innerHTML = e.target.value;
    });
}

JSFiddle

答案 2 :(得分:0)

“action”似乎是表单的阻止命名空间尝试类似

<script>   
function otherName(str){
document.getElementById("test1").innerHTML=str;
}
</script>
 <form name="form">
    <input type="radio" value="ping" name="rb" onclick="otherName(this.value)" />Ping
    <input type="radio" value="card" name="rb" onclick="otherName(this.value)" />Card
    <input type="radio" value="temp" name="rb" onclick="otherName(this.value)" />Temprature
<p id="test1">radio will be displayed here</p>
</form>

http://jsfiddle.net/waeqT/

相关问题