如果使用JavaScript选中了复选框,如何重定向到特定链接?

我正在这样做,但是对我不起作用。

<input type="checkbox" name="yousendit" id="yousendit" value="1" onselect="return yousendit();"/>

<script type=javascript>
function yousendit()
{
        if(document.getElementById('yousendit').checked== "checked")
        {
            window.location='https://www.yousendit.com/dropbox?dropbox=mydomain';
            return false;
        }
        return true;

}
</script>

请帮忙

最佳答案

您的来源有一些问题。这是工作版本:

<input type="checkbox" name="yousendit" id="yousendit" value="1" onclick="return yousendit();"/>
<script>
function yousendit(){
    if(document.getElementById('yousendit').checked){
        window.location='https://www.yousendit.com/dropbox?dropbox=mydomain';
        return false;
    }
    return true;

}
</script>

变化:
  • onclick代替onselect
  • 复选框的checked属性为boolean
  • 09-11 18:12