我正在尝试检索服务器端控件的offsetHeight,但它给了我一个错误。这是以下代码段 -
function Test() {
var imgFavorite = $("<%= imgFavorite.ClientID %>"); //imgFavorite is a server-side asp:Image control.
alert(imgFavorite); //[object Object]
alert(imgFavorite.offsetHeight()); //undefined.
}
代码有什么问题?
答案 0 :(得分:0)
使用ID声明jQuery对象时,您错过了哈希:
var imgFavorite = $("#<%= imgFavorite.ClientID %>");