【www.gdgbn.com--jquery】
jquery 弹表单提示效果代码,这种效果其实也叫标题 tips教程效果,很多时候是在表单或者文本输入框有这样的提示了,下面我们提供了下效果图。
<script>
$(function() {
$(".input,.login_input,.textarea").focus(function() {
$(this).addclass("focus");
}).blur(function() {
$(this).removeclass("focus");
});
//输入框提示,获取拥有hinttitle,hintinfo属性的对象
$("[hinttitle],[hintinfo]").focus(function(event) {
$("*").stop(); //停止所有正在运行的动画
$("#hintmsg").remove(); //先清除,防止重复出错
var hinthtml = "
- " + $(this).attr("hinttitle") + "" + $(this).attr("hintinfo") + "