日期:2014-05-17 浏览次数:20411 次
<script type="text/javascript">
$(function () {
$(".cc").dblclick(function () {
if ($(this).attr("data-value") == "√") {
$(this).attr("data-value", "");
$(this).text("");
} else {
$(this).attr("data-value", "√");
$(this).text("√");
}
});
})
</script>