2014-10-17 62 views

回答

1

你可以很容易地用jQuery來做到這一點。 (如果使用Bootstrap,你應該包括它)。

if($("#checkbox").is(':checked')) { 
    alert("Welcome"); 
} else { 
    alert("You must agree to the ToS"); 
} 

這裏有更多介紹:http://api.jquery.com/checked-selector/