js如何获取treeview选中节点的值?
2个回答
推荐于2016-10-11
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.listBox1.Items.Clear();
foreach(TreeNode x in this.treeView1.SelectedNode.Nodes)
{
this.listBox1.Items.Add(x.Text );
}
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.listBox1.Items.Clear();
foreach(TreeNode x in this.treeView1.SelectedNode.Nodes)
{
this.listBox1.Items.Add(x.Text );
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-06
展开全部
使用jQuery绑定控件的click事件
$(this).attr("value<值所存在的属性>");
$(this).attr("value<值所存在的属性>");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询