标签:
html 部分
<input type="text" id="test" onclick="check();"></input>
jquery 部分
function msgshow(tar,msginfo){
tar.after("<span datatype=‘msg‘ style=‘color:red‘>"+msginfo+"</span>");
}
function msghide(tar){
tar.nextAll().each(function(){
var dt=$(this).attr("datatype");
if(dt=="msg"){
$(this).remove();
}
});
}
function check(){
var id=$("#id");
if(id.val()!=""){
megshow(id,"内容不能为空!");
}
else{
meghide(id);
}
};
标签:
原文地址:http://www.cnblogs.com/tianzhiyun/p/4669674.html