gpt4 book ai didi

javascript - HTML 复选框不起作用

转载 作者:行者123 更新时间:2023-11-28 04:37:10 24 4
gpt4 key购买 nike

我想使用复选框显示和隐藏表格。该表出现和消失都没有问题。但是复选框没有被选中。我有 Jquery v1.8.2 。我有以下代码:

<html>
<head>
<title></title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$('#checkbox').toggle(function() {
document.getElementById('table').style.display = "inline";
}, function() {
document.getElementById('table').style.display = "none";
});
</script>
</head>
<body>
<form action="" method="POST" enctype="multipart/form-data">
<input type="checkbox" id="checkbox">
<br />
<table id="table" style="display: none;">
<tr>
<td>
<input type="file" name="file">
<input type="submit" name="upload" value="upload">
</td>
</tr>
</table>
</form>
</body>
</html>

最佳答案

试试这个方法-

$('#checkbox').change(function () {
if ($(this).is(":checked")) {
$('#table').show();
} else {
$('#table').hide();
}
});

工作演示 --> http://jsfiddle.net/pmNAe/

关于javascript - HTML 复选框不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16607931/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com