隐藏表单值-jQuery

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏表单值-jQuery相关的知识,希望对你有一定的参考价值。

  1. $("#email")
  2. .val("Enter Your Email Here")
  3. .css("color", "#000")
  4. .focus(function(){
  5. $(this).css("color", "#c1403e");
  6. if ($(this).val() == "Enter Your Email Here") {
  7. $(this).val("");
  8. }
  9. })
  10. .blur(function(){
  11. $(this).css("color", "#000");
  12. if ($(this).val() == "") {
  13. $(this).val("Enter Your Email Here");
  14. }
  15. });

以上是关于隐藏表单值-jQuery的主要内容,如果未能解决你的问题,请参考以下文章

未检索或存储隐藏的表单值

在表单提交期间更新隐藏值

使用来自 javascript 的返回值自动填充隐藏的表单字段

使用 Javascript 设置表单隐藏值

为 django 隐藏表单字段指定默认值 - 骨干?

在 Squarespace 中显示/隐藏表单域