jquery 操作服务器控件

jqeury 操作服务器控件

注意:如果jquery获取只能是html控件的id

服务器的控件需要转换ID,因为转换成HTML时,服务器控件的ID变了。

document.getElementByID(<%=dropdownlist1.ClientID%>).value)");

而不是document.getElementByID(‘dropdownlist1’);


给服务器控件赋值:

  var textBoxId="#"+'<%=TextBox1.ClientID %>';
           alert($(textBoxId).val());

posted on 2011-08-26 16:26  Allen_Chang  阅读(532)  评论(0编辑  收藏  举报

导航