css是自动检查我的html复选框

时间:2012-02-06 23:15:19

标签: javascript jquery html css

当我将我的复选框放在一个css类中时,会自动检查它。我怎么能阻止这个?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>website</title>
<style type="text/css">
.checkbox0 {
position:fixed;
margin-left:137px;
margin-top:119px;
font-family:Segoe UI;
font-size:9px;
font-weight:normal;
}
</style>
</head>
<body>
<div class="checkbox0"><input type="checkbox" />s</input></div>
</body>
</html>

如果我们移除<div class="checkbox0"></div>,我们会看到它正常工作,但是当它与css一起使用时,它会自动检查。

3 个答案:

答案 0 :(得分:1)

这不可能。使用此代码但不能看到它自动切换。问题出在其他地方。它可能是由于其他一些js文件,如果包含在这里或其他东西是冲突的。

答案 1 :(得分:0)

我有一种偷偷摸摸的感觉,这不是你的代码,而是你的浏览器缓存。 ;)尝试删除浏览器缓存,看看是否修复了它。

答案 2 :(得分:0)

首先,您的代码无效HTML:

<input type="checkbox" />s</input>

您已使用input关闭/>代码,然后您拥有</input>。如果您仍然看到问题,请查看删除</input>是否解决了问题。