欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

input输入框为空提示内容变化

程序员文章站 2022-07-13 08:41:18
...
// 如果输入内容为空
var captionTxt = $(".caption").text();
if(!inputContent){
	$(".caption").text("请输入内容").animate({opacity: 1.25}, 3000, function(){
		$(this).text(captionTxt);
	});
	$("#inputContentArea").val("").focus();
	return;
}

 

DEMO