jquery 获取父类窗口的某个标签
时间: 2023-11-18 11:12:15 浏览: 76
在 jQuery 中,可以使用 `parent()` 方法来获取父级元素,然后再使用 `find()` 方法来查找特定的标签。例如,如果要获取父级元素中的 `div` 标签,可以使用以下代码:
```javascript
// 获取父级元素
var parentElement = $("#childElement").parent();
// 查找特定的标签
var divElement = parentElement.find("div");
```
其中,`#childElement` 是子元素的 ID,`parent()` 方法返回父级元素,`find()` 方法在父级元素中查找特定的标签,并返回该标签的 jQuery 对象。如果父级元素中有多个相同的标签,可以使用 `eq()` 方法来获取其中一个标签,例如:
```javascript
// 获取第二个 div 标签
var secondDivElement = parentElement.find("div").eq(1);
```
其中,`eq(1)` 表示获取第二个标签,因为数组下标从 0 开始。
相关问题
子类弹窗获取父类窗口的属性 jquery'
在 jQuery 中,可以使用以下方法来获取父类窗口的属性:
1. 在子类弹窗中使用父类窗口的选择器来获取属性,例如:
```
class Parent {
constructor() {
this.attribute = "父类属性";
this.child_window = new Child();
}
}
class Child {
constructor() {
this.get_attribute();
}
get_attribute() {
let attribute = $(window.parent.document).find("#parent_window_id").data("attribute");
console.log(attribute);
}
}
```
在这个例子中,子类弹窗 Child 在初始化时调用 get_attribute 方法,该方法使用父类窗口的选择器 $(window.parent.document).find("#parent_window_id") 来获取父类窗口的某个元素,然后使用 jQuery 的 data 方法来获取该元素的 data 属性,从而获得父类窗口的属性值。
2. 在父类窗口中将属性值保存在 cookie 中,子类弹窗中读取 cookie 来获取属性值,例如:
```
class Parent {
constructor() {
this.attribute = "父类属性";
document.cookie = "attribute=" + this.attribute;
this.child_window = new Child();
}
}
class Child {
constructor() {
this.get_attribute();
}
get_attribute() {
let attribute = document.cookie.replace(/(?:(?:^|.*;\s*)attribute\s*\=\s*([^;]*).*$)|^.*$/, "$1");
console.log(attribute);
}
}
```
在这个例子中,父类窗口在初始化时把属性值保存在 cookie 中,子类弹窗在初始化时调用 get_attribute 方法,该方法使用 JavaScript 的 document.cookie 属性来获取 cookie,然后使用正则表达式来从 cookie 字符串中提取属性值,从而获得父类窗口的属性值。
阅读全文