我当前的代码(确认消息)显示成功消息,然后淡出:
echo "<script>$(\".submessage\").hide(\"slow\").fadeIn(\"slow\").animate({opacity: 1.0}, 5000).fadeOut(\"slow\"); $(':input').clearForm() </script>";
我想实现这一点,输入字段也会与成功消息一起淡出 - 非常感谢一些帮助。
谢谢你, 碧玉
答案 0 :(得分:0)
你可以这样做
echo "<script>$(\".submessage\")
.hide(\"slow\").fadeIn(\"slow\")
.animate({opacity: 1.0}, 5000)
.fadeOut(\"slow\"); $(':input').clearForm();
$(\"#nameOfInput\").fadeOut(\"slow\"); </script>";