如果使用javascript檢查複選框,如何重定向到特定鏈接?如果使用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>
請幫