JQuery省市联动效果实现过程详解

2020-05-29 07:27:14易采站长站整理

Js相关技术

JS中的数组: [“城市”]

new Array()

DOM树操作:

​ 创建节点: document.createElement
​ 创建文本节点: document.createTextNode
​ 添加节点: appendChild

需求分析

​ 在我们的注册表单中,通常我们需要知道用户的籍贯,需要一个给用选择的项,当用户选中了省份之后,列出省下面所有的城市

技术分析

准备工作 : 城市信息的数据

添加节点 : appendChild (JS)

a. append : 添加子元素到末尾

$(“#div1”).append(“<font color=’red’>this is replacing text</font>”)

b. appendTo : 给自己找一个爹,将自己添加到别人家里

$(“#div1”).prepend(“<font color=’red’>this is replacing text</font>”)

和第一个效果一样

c. prepend : 在子元素前面添加

$(“#div1”).after(“<font color=’red’>this is replacing text</font>”)

d. after : 在自己的后面添加一个兄弟

$(“<font color=’red’>this is replacing text</font>”).appendTo(“#div1”)


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript" src="js/jquery-1.11.0.js"></script>
<script>

$(function () {
$("#btn1").click(function () {
// $("#div1").append("<font color='red'>this is replacing text</font>")
// $("#div1").prepend("<font color='red'>this is replacing text</font>")
$("#div1").after("<font color='red'>this is replacing text</font>")
// $("<font color='red'>this is replacing text</font>").appendTo("#div1")
});
});
</script>
</head>
<body>

<input type="button" value="click me, replace text" id="btn1">

<div id="div1">this is a text that will be replaced!</div>

</body>
</html>

遍历的操作:


<script>
var cities = ["深圳市", "东莞市", "惠州市", "广州市"];
$(cities).each(function (i, n) {
console.log(i + "====" + n);
})
$.each(cities, function (i, n) {
console.log(i + ">>>>" + n);
})
</script>

步骤分析:

导入JQ的文件
文档加载事件:页面初始化
进一步确定事件: change事件
函数: 得到当前选中省份