对于选择框,复选框和单选按钮: 当用户使用鼠标进行选择时,会立即触发该事件。
对于其他元素类型: 该事件在字段失去焦点时发生。
$(selector).change()
$(selector).change(function)
参数 | 说明 |
function | 这是一个可选参数。用于指定所选元素发生更改事件时要运行的功能。 |
<!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="您选择了: "+document.getElementById("se").value;
});
</script>
</body>
</html>
<!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>