<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#field38894").click(function(){
checkBoxStatus("field38894");
});
jQuery("#field38895").click(function(){
checkBoxStatus("field38895");
});
jQuery("#field38896").click(function(){
checkBoxStatus("field38896");
});
jQuery("#field38897").click(function(){
checkBoxStatus("field38897");
});
jQuery("#field38898").click(function(){
checkBoxStatus("field38898");
});
jQuery("#field38899").click(function(){
checkBoxStatus("field38899");
});
//实现只能选中一个CheckBox框。
function checkBoxStatus(fieldId) {
for (var i = 0; i < 6; i++) {
var checkNum = 38894 + i;
var checkStr = "field" +checkNum;
if (jQuery("#field" +checkNum).attr('checked') == true) {
if (checkStr != fieldId) {
jQuery("#field" +checkNum).attr('checked', false);
jQuery("#field" +checkNum).next().attr("class","jNiceCheckbox");
}
}
}
}
});
</script>