Files
dsProject/dsBase/WebRoot/view/ywgl/rywh/test1.html
2025-08-14 15:45:08 +08:00

27 lines
610 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
Hello World!<input type="checkbox" id="myCheckbox">
<script src="http://cdn.jsdelivr.net/jquery/2.0.0/jquery-2.0.0.min.js"></script>
<script>
$(function(){
$('input[type="checkbox"]').click(function () {
if ($(this).is(":checked")) {
console.log("checkbox选中");
} else {
console.log("checkbox取消选中");
}
});
});
</script>
</body>
</html>