当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery change()用法及代码示例


jQuery change 事件发生在元素的值改变时。它仅适用于表单字段。当change事件发生时,change()方法会附加一个函数来运行。

注意:此事件仅限于 <input> 元素、<textarea> 框和 <select> 元素。

  • 对于选择框、复选框和单选按钮: 当用户用鼠标进行选择时,立即触发该事件。
  • 对于其他元素类型: 该事件在字段失去焦点时发生。

用法

$(selector).change()

它触发所选元素的更改事件。

$(selector).change(function)

它为更改事件添加了一个函数。

jQuery change() 事件参数

参数 描述
Function 它是一个可选参数。它用于指定当所选元素发生更改事件时要运行的函数。

jQuery change() 事件示例

让我们以一个例子来演示 jQuery change() 事件。

<!DOCTYPE html>  
<html lang="en">  
<head>  
  <meta charset="utf-8">  
  <title>change demo</title>  
  <style>  
  div {  
    color:red;  
  }  
  </style>  
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>  
</head>  
<body>  
 <select id="se" name="actors" >  
  <option>Uthappa</option>  
  <option selected="selected">Kattapa</option>  
  <option>Veerappa</option>  
  <option>Bahubali</option>  
  <option>Bhallal Dev</option>  
  <option>Awantika</option>  
</select>  
<div id="loc"></div>  
 <script>  
$( "select" ) .change(function () {  
document.getElementById("loc").innerHTML="You selected:"+document.getElementById("se").value;
});
</script>  
 </body>  
</html>

输出:

让我们看另一个 jQuery 更改事件示例,其中我们提供了使用 ctrl 键选择多个数据的选项。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>change demo</title>
  <style>
  div {
    color:red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
 <select name="Employees" multiple="multiple">
  <option>Uthappa</option>
  <option selected="selected">Kattapa</option>
  <option>Veerappa</option>
  <option selected="selected">Bahubali</option>
  <option>Bhallal Dev</option>
  <option>Awantika</option>
</select>
<div></div>
 <script>
$( "select" )
  .change(function () {
    var str = "";
    $( "select option:selected" ).each(function() {
      str += $( this ).text() + " ";
    });
    $( "div" ).text( str );
  })
  .change();
</script>
 </body>
</html>

输出:





相关用法


注:本文由纯净天空筛选整理自 jQuery change()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。