惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
The Register - Security
The Register - Security
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Hacker News
The Hacker News
P
Proofpoint News Feed
Project Zero
Project Zero
The GitHub Blog
The GitHub Blog
The Last Watchdog
The Last Watchdog
F
Fortinet All Blogs
S
Schneier on Security
Help Net Security
Help Net Security
Security Archives - TechRepublic
Security Archives - TechRepublic
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
I
InfoQ
T
The Blog of Author Tim Ferriss
Cisco Talos Blog
Cisco Talos Blog
Stack Overflow Blog
Stack Overflow Blog
T
Troy Hunt's Blog
人人都是产品经理
人人都是产品经理
T
Threatpost
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cyber Attacks, Cyber Crime and Cyber Security
雷峰网
雷峰网
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
爱范儿
爱范儿
Forbes - Security
Forbes - Security
Vercel News
Vercel News
S
Security Affairs
美团技术团队
P
Privacy & Cybersecurity Law Blog
N
News and Events Feed by Topic
Cyberwarzone
Cyberwarzone
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Jina AI
Jina AI
Spread Privacy
Spread Privacy
Attack and Defense Labs
Attack and Defense Labs
IT之家
IT之家
U
Unit 42
Recorded Future
Recorded Future
W
WeLiveSecurity
PCI Perspectives
PCI Perspectives
P
Palo Alto Networks Blog
H
Hacker News: Front Page
S
Security @ Cisco Blogs
博客园 - 【当耐特】

博客园 - 李晓

离开程序员的行业3年了,这次回来,心情波动很大 现在不做程序员了,不会了 现在的生活 芙蓉姐姐大片美若天仙 - 李晓 - 博客园 博客地图怎么做? 我是一个很不称职的管理员 写了一个以树形显示文档库的WEBPART,可根据权限显示文档库 转发: Visual Studio 2005常用插件 转发:编程之余保护眼睛[不断更新ing...] 转发:Session研习笔记 转发:使用JavaScript删除ASP.NET生成的HttpCookie 大病了一场,不过闲时对AJAX探索时,实现了IE TREE无刷新 提供可在WSS上使用的MYTREE 2006年的长春.NET俱乐部 关于WSS搜索的问题 AJAX(2) 在将WEBPART打包成*.CAB包和*.MSI安装包后,竟然无法将其安装到指定的WSS网站 关于AJAX开发 在C#中实现MSN消息框的功能
更正用AJAX实现IE TREE无刷新取值的方法
李晓 · 2006-06-01 · via 博客园 - 李晓

前一段时间写了一篇文章,是关于用AJAX技术实现IE TREE无刷新的方法。
原文:http://bliss.cnblogs.com/archive/2006/03/15/350695.html

在原文中我说的是用JAVASCRIPT语法,当IE TREE被ONCLICK时,取得IE TREE的VALUE值。

我重做了一个操作系统(我原来使用的是WINDOWS2003多国语言版,只有在这个系统下,用取VALUE值的方法才好使,原因没弄明白),我换成了2003的简体中文版,取VALUE值的方法就不好使了。

没办法,只有重写。费了好大的劲,找到了IE TREE的 clickedNodeIndex方法。代码如下:

  <script>
   function TreeNodeClick(nodeindex)
   {
        alert(nodeindex);
    }
  </script>

       <iewc:treeview  id="TreeView1" onclick="TreeNodeClick(this.clickedNodeIndex)" name="tree" runat="server" <iewc:treeview>

在这里,我借此更正一下我上次所犯的错误。以后在写随笔前,我会进行详细测试后在放到网站中。