1

我正在尝试检索服务器端控件的 offsetHeight,但它给了我一个错误。这是以下代码片段 -

  function Test() {
            var imgFavorite = $("<%= imgFavorite.ClientID %>"); //imgFavorite is a server-side asp:Image control.
            alert(imgFavorite); //[object Object]
            alert(imgFavorite.offsetHeight()); //undefined.    
   }

代码有什么问题?

4

1 回答 1

0

使用 ID 声明 jQuery 对象时,您错过了哈希:

var imgFavorite = $("#<%= imgFavorite.ClientID %>");
于 2011-06-24T08:44:07.480 回答