我正在尝试使用单选按钮创建一个简单的图片库。图像设置为显示:无;默认。我想要的是当我单击它们各自的按钮时它们显示为块。
<html>
<head>
<style>
.img { width: 250px;
max-height: 300px;
display: none;
}
</style>
<script>
function picture (a) {
var pic = document.getElementById('image')
if (a == 1) {
pic.src="julia1.jpg"
} else { pic.src="julia2.jpg"}
pic.style.display ="block";
}
</script>
</head>
<body>
<img class="img" id="image" src="julia1.jpg">
<form action="">
<input type="radio" onclick="picture(1)" name="picture"></input>
<input type="radio" onclick="picture(2)" name="picture"></input>
</form>
</body>
</html>
在浏览器控制台上,它说对象不是函数。这意味着什么?(这对于两个输入标签)