给你写个简单的 demo
<div class="boxbox clearfix">
<span class="selected" id="boxboxa">a</span>
<span id="boxboxb">b</span>
</div>
<div class="boxbox-con">
<div class="onediv" id="onediv">一个div</div>
<div class="otherdiv" id="otherdiv">另一个div</div>
</div><style type="text/css">
clearfix:before,clearfix:after {display: table; content: ''; height: 0; width: 0; clear: both;}
boxbox span {width: 200px; float: left; display: inline-block; height: 35px; line-height: 35px; text-align: center; font-size: 24px}
boxbox spanselected {background-color: #f1f1f1;}
boxbox-con {height: 300px;}
boxbox-con onediv {background-color: red; height: 100%;}
boxbox-con otherdiv {background-color: cyan; display: none; height: 100%}
</style><script type="text/javascript" src="jqueryjs"></script>
<script type="text/javascript">
$('#boxboxa')on('click',function(){
$(this)addClass('selected')siblings()removeClass('selected');
$('#onediv')show();
$('#otherdiv')hide();
});
$('#boxboxb')on('click',function(){
$(this)addClass('selected')siblings()removeClass('selected');
$('#onediv')hide();
$('#otherdiv')show();
});
</script>
可以在插入c,d的代码后,重新执行一次$("a")click(function(){alert($(this)attr("name")});即可。
$("a")click(function(){alert($(this)attr("name")});是修改当前所有<a>节点的属性,此时,a,b被改变,而c和d尚未生成。
比如说父节点的Id是xxx,里面有个子节点的yyy属性的值是zzz,则
$("#xxx [yyy=zzz]")
或者父节点已经获取到变量x中,则
$("[yyy=zzz]",x)
使用jQuery框架 *** 作HTML DOM是一件极其便捷的事情,如下 *** 作即可获取相应节点的数据,id和名字(下文中引用“$(this)”表示一个jQuery对象):
获取节点标签内容数据: $(this)html( )
获取表单组件中的值: $(this)val()
获取节点中的文本内容(例如textarea): $(this)text()
获取节点的id: $(this)attr("id")
获取节点的名字: $(this)attr("name")
使用elementFromPoint方法;
思路是,先获取鼠标所在的位置,然后调用此方法即可,兼容性还可以,ie6都支持;
var ele = documentelementFromPoint(x,y);
以上就是关于jquery获取子节点 求教!急!全部的内容,包括:jquery获取子节点 求教!急!、jquery动态获取标签节点、jquery根据属性值获取子节点等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)