function noempty()
{
if($.trim($("#user").val()) == '' || $.trim($("#user").val()) == '您的称呼')
{
$("#user").next().remove();
$("#user").after(' 不能为空');
var user = false;
} else {
$("#user").next().remove();
}
if($.trim($("#content").val()) == '')
{
$("#content").next().remove();
$("#content").after(' 不能为空');
var content = false;
} else {
$("#content").next().remove();
}
if(content==false || user==false )
{
return false;
}
}
$("#commentform").submit(function()
{
if(false!=noempty())
{
$("#subBtn").attr('disabled' , true);
} else {
return noempty();
}
});
$("#user, #content").blur(function() {noempty();});
$(".commentUl").load("../script/comment.php",{id: 81, act: 1});
$(".comment h4 span").load("../script/comment.php",{id: 81,act: 0});
$("#user").focus(function(){$(this).val('')});