gpt4 book ai didi

jquery - 如何使用 jquery 获取 nodeType

转载 作者:太空狗 更新时间:2023-10-29 15:22:32 25 4
gpt4 key购买 nike

我想获取nodeType,然后将其与文本节点或元素节点的位置进行比较。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
$(function(){
var mm= $('.jj')
alert(mm.nodeValue)
})
</script>
</head>
<body>
<div class="jj">value</div>
</body>

最佳答案

尝试访问这些属性

var mm = $('.jj').get(0);
alert(mm.nodeValue);
alert(mm.nodeType)

关于jquery - 如何使用 jquery 获取 nodeType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12160772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com