样式复选框

时间:2012-02-02 09:16:15

标签: javascript html css

我正在尝试在复选框中插入图像而不是检查。我正在使用的代码是:

<html>
<head>
<style>
.bl {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #175899), color-stop(0.5, #7da4bf), color-stop(3, #9fbed3));
width: 90%;
height:30px;
border-radius: 5px;
margin-right:auto;
margin-left:auto;
margin-top:10px;
margin-bottom:10px;
}
p
{
font-family:"Times New Roman";
font-size:10px;
}

checkbox
{
  width: 75px;
  height: 75px;
  padding: 0 5px 0 0;
  background: url(images/Green_tick.png) no-repeat;
  display: block;
  clear: left;
  float: left;
}

.checked {
  position: absolute;
  width: 200px;
  height: 21px;
  padding: 0 24px 0 8px;
  color: #fff;
  font: 12px/21px arial,sans-serif;
  background: url(images/Green_tick.png) no-repeat;
  overflow: hidden;
}

</style>
</head>

<body>
<script>
function Checked(id)
{
if(id.checked==1)
{
    alert("Checked");
}
else
{
    alert("You didn't check it! Let me check it for you.")
        id.checked = 1;

}
}

</script>

<div class="main_menu">
    <a id='menu' href="javascript:" onclick="loadMenuPage();"></a>
</div>
<p>
All verifications required for QR7 can be uploaded here. Any item which still requires verification is
marked in red until picture has been attached.
</p>
<div class="bl">  
<input type="checkbox" id="checkbox" class="checkbox" onclick="Checked(id);"> Income </input>
</div>
<div class="bl">  
<input type="checkbox" id="checkbox" class="checkbox" onclick="Checked(id);"> Property </input>
</div>
<div class="bl">  
<input type="checkbox" id="checkbox" class="checkbox" onclick="Checked(id);"> Court Order Child Support </input>
</div>
<div class="bl">  
<input type="checkbox" id="checkbox" class="checkbox" onclick="Checked(id);"> Future Medical Child Support </input>
</div>

</body>
</html>

关于如何实现它的任何建议。到目前为止,我在复选框中得到正常的勾号。

提前致谢。

2 个答案:

答案 0 :(得分:2)

这篇文章很老了,但这是我的建议:

将标签与您的复选框相关联,如下所示:

<input type="checkbox" value="1" id="c1" />
<label class="check" for="c1"></label>

隐藏css您的复选框:

.checkboxes input[type=checkbox]{
    display:none
}

根据需要设置标签样式。我创建了一个简单的jsfiddle,完全演示了如何使用personnalise复选框。我在这个例子中使用了backgrond-color,但您可以轻松地使用背景图像。

Here是jsfiddle

答案 1 :(得分:1)

使用CSS的样式复选框是一场噩梦,你永远无法实现你想要的外观。尝试使用jQuery插件,大多数人通过将输入放在可见屏幕上来“隐藏”复选框,并使用带有背景图像的跨度替换,您可以根据需要进行编辑。 就像是: http://www.protofunc.com/scripts/jquery/checkbox-radiobutton/

同时检查此帖子: Pure CSS Checkbox Image replacement