<html>
<head>
<title></title>
<style type="text/css">
.li_bg { width: 149px; height: 167px; padding: 5px; padding-top: 17px; margin: 5px; float:left; cursor:move; list-style:none; text-align:center; background-image:url(images/interface/image_bg_green.png); background-repeat:no-repeat;}
.delete { width: 149px; height: 167px; padding: 5px; padding-top: 17px; margin: 5px; float:left; cursor:move; list-style:none; text-align:center; background-image:url(images/interface/image_bg_red.png); background-repeat:no-repeat;}
</style>
<script type="text/javascript">
<!--
function changeClassByCheck(obj,id,chkd,notchkd) {
if (obj.checked) {
document.getElementById(id).className=chkd;
} else {
document.getElementById(id).className=notchkd;
}
}
//-->
</script>
</head>
<body>
<cfoutput query="myQuery">
<li class="li_bg" id="i_#ID#">
<input name="delete" type="checkbox" value="1" onclick="changeClassByCheck(this,'i_#ID#','delete','li_bg');">
</li>
</cfoutput>
</body>
</html>
|