<asp:ListBox ID="listboxSelcetField" runat="server" Width="80%" Height="250px" onclick="SelectField(this.options[this.selectedIndex].value)"></asp:ListBox>
<script>
function SelectField(objValue)
{
alert(objValue);//objValue为选中的值
}
</script>
//注解 此方法只用于在ListBox为单选的时候 若为多选 则必需要用循环的方法将值取出