我收到此代码的以下错误。我正在使用中继器来显示图像。图像 id 是 img .in jquery 我$("#<%=img.ClientID %>")
用来获取图像。但它给出的错误,如 img 在当前上下文中不存在。中继器 ID 为rptRepeater
. 我怎么解决这个问题 ?$("#<%=img.ClientID %>") doesnot exists in current context
.NET 代码
<asp:Repeater ID="RepeaterView" runat="server">
<ItemTemplate>
<a onmouseout="SelectEnd()" onmouseover='<%#Eval("Coords","preview(\"{0}\");")%>'>
<asp:Image ID="ImageZoom" runat="server" ImageUrl='<%# DataBinder.Eval(Container.DataItem, "ImageUrl") %> ' Height="150" Width="150" >
</asp:Image>
</a>
</ItemTemplate>
</asp:Repeater>
JavaScript 代码
<script type="text/javascript">
function preview(Coords) {
var arrResult = Coords.split(",");
var nx1 = arrResult[0];
var ny1 = arrResult[1];
var nx2 = arrResult[2];
var ny2 = arrResult[3];
var ias = $("#<%=ImageZoom.ClientID %>").imgAreaSelect({ instance: true });
ias.setSelection(nx1, ny1, nx2, ny2, true); ias.setOptions({ show: true });
ias.update();
}
</script>