当前位置: 首页 > 文档资料 > jQuery 入门教程 >

val()

优质
小牛编辑
134浏览
2023-12-01

描述 (Description)

val( )方法获取第一个匹配元素的输入值。

语法 (Syntax)

以下是使用此方法的简单语法 -

<i>selector</i>.val( ) 

参数 (Parameters)

以下是此方法使用的所有参数的说明 -

  • NA

例子 (Example)

下面的示例将设置第二段中第一个输入框的HTML内容 -

<html>
   <head>
      <title>The Selecter Example</title>
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
            var content = $("input").val();
            $("p#pid2").text(content);
         });
      </script>
      <style>
         .red { color:red; }
         .green { color:green; }
      </style>
   </head>
   <body>
      <input type = "text" value = "First Input Box"/>
      <input type = "text" value = "Second Input Box"/>
      <p class = "green" id = "pid1">This is <i>first paragraph</i>.</p>
      <p class = "red" id = "pid2">This is second paragraph.</p>
   </body>
</html>