$("#apply input").focus(function () {
    if ($(this).val() == "请补充内容") {
        $(this).val("");
    }
    $(this).css("color", "#000");
 }).blur(function () {
    if ($(this).val() == "") {
         $(this).val("请补充内容");
    }
    $(this).css("color", "#000");
 });
        

 

相关文章:

  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
猜你喜欢
  • 2021-12-19
  • 2021-12-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-15
  • 2021-12-19
相关资源
相似解决方案