JQuery .Show() doesn't work with server control?

前端 未结 3 1277
陌清茗
陌清茗 2021-01-16 08:29

I have 2 html TR that i make them runat=\"server\" & visible=\"false\" and I have a dropdownlist called citiesDropDownList

<
3条回答
  •  难免孤独
    2021-01-16 09:08

    Remove the visible=false from the server control as this stops the control being rendered to the page, either set a CSS style with display: none or hide the required controls in javascript.

提交回复
热议问题