国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
549B

  1. $(function(){
  2. //文本框Style
  3. $(".text").mouseover(function(){
  4. $(this).addClass("text_o");
  5. }).mouseout(function(){
  6. $(this).removeClass("text_o");
  7. }).focus(function(){
  8. $(this).addClass("text_s");
  9. }).blur(function(){
  10. $(this).removeClass("text_s");
  11. });
  12. $(".intxt").mouseover(function(){
  13. $(this).addClass("text_o");
  14. }).mouseout(function(){
  15. $(this).removeClass("text_o");
  16. }).focus(function(){
  17. $(this).addClass("text_s");
  18. }).blur(function(){
  19. $(this).removeClass("text_s");
  20. });
  21. })