Contoh 1:
<script type="text/javascript">
function validate() {
if (document.getElementById('remember').checked) {
alert("checked");
} else {
alert("You didn't check it! Let me check it for you.");
}
}
</script>
Contoh 2:
<script type="text/javascript">
$(document).ready(function() {
$('.checkbox_dak_1').on("click", function(e) {
if ($(this).is(':checked')) {//centang
$('.elemen_yang_disabled').prop('disabled', false);
}
else {//tidak centang
$('.elemen_yang_disabled').prop('disabled', true);
}
});
});
</script>
Contoh 3:
function check() {
document.getElementById("myCheck").checked = true;
}
function uncheck() {
document.getElementById("myCheck").checked = false;
}
Sekian, terimakasih atas kunjungannya.
Salam,
PHP Aku : Membangun web terorganisasi dan mudah dimengerti, contoh tutorial dengan menggunakan HTML, CSS, JavaScript, SQL, PHP, dan XML.
EmoticonEmoticon