2

我想在焦点上更改 html 中文本框的颜色。但我的颜色没有改变。!

html

<!DOCTYPE html>
<html>
 <head>
  <title>Make a new account</title>
   <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
   <script src="script.js" type="text/javascript" ></script>
 </head>
 <body>
  <h2 align="center" class="Heading">Want an account</h2>
  <h3 align="center" class="Heading">Enter your details</h3>
  <div align="center">
   <form name="Info_Form">
    <table>
     <tr>
      <td class="TD">Your Name Pal :</td> <td><input type="text" name="Name"></td>
     </tr>
     <tr>
      <td class="TD">Your Password :</td> <td><input type="password" name="pwd"></td>
     </tr>
     <tr>
      <td align="right" ><input type="submit" value="Submit"></td>
     </tr>
    </table>
   </form>
  </div>
 </body>
</html>

我的.js文件:

$(document).ready(function(){
 $('h2').fadeOut(3000);
 $(".TD").focus(function(){
    $(this).css("background-color","blue");
  });
});

我究竟做错了什么?

4

2 回答 2

2

代替 :

$(".TD").focus(function(){
    $(this).css("background-color","blue");
  });

利用:

$("input").focus(function(){
    $(this).css("background-color","blue");
  });
于 2013-10-10T09:22:21.580 回答
2

这是因为您只能应用于.focus()有限数量的元素(链接、表单输入)。

来自jQuery 文档

当元素获得焦点时,焦点事件被发送到元素。此事件隐式适用于一组有限的元素,例如表单元素 (, 等) 和链接 ()。在最近的浏览器版本中,可以通过显式设置元素的 tabindex 属性来扩展事件以包括所有元素类型。元素可以通过键盘命令(例如 Tab 键)或通过鼠标单击元素获得焦点。

在这里,您尝试将其应用于<td>标签。

此外,您<input>不是 的孩子.TD,因此这是您的代码中的另一个问题。

为什么不简单地使用 css:focus选择器来实现这一点?

于 2013-10-10T09:16:23.363 回答