给ListBox添加双击事件示例代码
更新时间:2013年12月02日 17:05:58 作者:
如何给ListBox添加双击事件,想必有很多的新手朋友们都不会吧,下面有个不错的示例,感兴趣的朋友可以参考下
复制代码 代码如下:
<!--创建一个JS调用button的click事件-->
<script type="text/javascript">
function JsListChangeItem() {
document.getElementById("buttonShow").click();
}
</script>
<!--创建一个隐藏的button,创建双击事件--->
<asp:Button ID="buttonShow" runat="server" onclick="buttonShow_Click" Text="Button" style="display:none"/>
<!--实现双击的listbox-->
<asp:ListBox ID="listBox1" runat="server"Height="226px" Width="211px" AutoPostBack="True"></asp:ListBox>
.cs
复制代码 代码如下:
protected void Page_Load(object sender, EventArgs e)
{
listBox1.Attributes.Add("ondblclick", "JsListChangeItem()");//为listBox1添加双击事件。
}
您可能感兴趣的文章:
- C#入门教程之ListBox控件使用方法
- ASP.NET jQuery 实例17 通过使用jQuery validation插件校验ListBox
- asp.net中ListBox 绑定多个选项为选中及删除实现方法
- 对ListBox的添加移除操作实例分享
- ListBox实现上移,下移,左移,右移的简单实例
- asp.net listbox实现单选全选取消
- .net中实现listBox左右移动
- C#保存listbox中数据到文本文件的方法
- C#读取文本文件到listbox组件的方法
- C#实现让ListBox适应最大Item宽度的方法
- ASP.NET中DropDownList和ListBox实现两级联动功能
- ASP.NET中 ListBox列表框控件的使用方法
相关文章
解决ie11 SCRIPT5011:不能执行已释放Script的代码问题
这篇文章主要介绍了ie11 SCRIPT5011:不能执行已释放Script的代码 ,需要的朋友可以参考下2019-05-05
最新评论