日期:2014-05-18  浏览次数:20426 次

Dropdownlist的SelectedIndex的问题???
Me.DropDownList1.Attributes.Add( "onchange ",   "javascript:alert(document.all( 'DropDownList1 ').SelectedIndex); ")
这样写弹出来是undefined

------解决方案--------------------
不好意思错了..
Me.DropDownList1.Attributes.Add( "onchange ", "javascript:alert(document.all( 'DropDownList1 ').selectedIndex); ")要注意大小写