当前位置:  开发笔记 > 编程语言 > 正文

javascript和ASP.NET控件前缀中的"this"

如何解决《javascript和ASP.NET控件前缀中的"this"》经验,为你挑选了1个好方法。

我有代码,呈现以下HTML


  Control 1 with onclick="javascript:Test(this);" 
  Control 2
  
Control 3
function Test(myThis) { //Here I would like to get references to the siblings of Control 1 (in this ex: Control 2, Control 3) //and disable them. Any ideas? }

我正在使用这种寻找兄弟姐妹的方法,因为这是在深度= 3的嵌套用户控件中,而ASP.NET指的是带有前缀的控件非常难,特别是如果我在页面上有多个控件实例.



1> Ben Scheirma..:

如果您使用的是jQuery等javascript库,那么它变得非常简单:

$(this).siblings().disable();

http://docs.jquery.com/Traversing/siblings#expr

如果您没有jQuery或类似的库,那么您必须手动执行:

function disableSiblingsOf(elem)
{
  var nodes = elem.parent.childNodes;
  for(var i=0; i

这应该够了吧.

推荐阅读
linjiabin43
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有