我想要在JavaScript函数中访问ListBox项

我想要在JavaScript函数中访问ListBox项

本文介绍了我想要在JavaScript函数中访问ListBox项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

function Keydowned(t) {

     //How To Accsess Whole Items Of ListBox In This Section

   }


<input id="TextBox_Tag" type="text"  class="TextBox_Tag_Style" onkeydown="Keydowned(this)" />
                               <asp:ListBox ID="ListBox_Tag" runat="server" CssClass="ListBox_Tag_Position" ondblclick="DblClick(this)">
                                   <asp:ListItem>ab</asp:ListItem>
                                   <asp:ListItem>abc</asp:ListItem>
                                   <asp:ListItem>abcd</asp:ListItem>
                                   <asp:ListItem>ad</asp:ListItem>
                                   <asp:ListItem>abd</asp:ListItem>
                               </asp:ListBox>




非常感谢




thanks a lot

推荐答案



这篇关于我想要在JavaScript函数中访问ListBox项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 00:29