WEB开发网
开发学院网页设计JavaScript jquery中使用表单元素选择器 阅读

jquery中使用表单元素选择器

 2010-09-14 13:08:56 来源:WEB开发网   
核心提示:[示例代码] <html><head><script src="jquery-1.2.js"></script><script>$(document).ready(function () {$("#form :text"

[示例代码]

<html>
  <head>
    <script src="jquery-1.2.js"></script>
    <script>
      $(document).ready(
        function () {
          $("#form :text").each(
            function (index, element) {
              $(element).css("background-color", "yellow");
            }
          );
        }
      );
    </script>
  </head>
  <body>
    <form id="form">
      <input type="input" />
      <input type="input" />
      <input type="input" />
      <input type="submit" />
    </form>
  </body>
</html>

Tags:jquery 使用 表单

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接