我用.ascx
我正在尝试使用我的 jQuery 执行一些操作,下面的代码是我调用服务器控件 ID 的方式。
$("input").mouseenter(function() {
//some function
}
<input type="text" id="family1" value="family"1/>
<input type="text" id="family2" value="family"2 runat="server"/>
我现在的问题是我的 family1 能够调用 jQuery 函数,但我的家人不能。
是因为我正在使用.ascx
,所以我无法将服务器控件 ID 传递给我的 jQuery?
有什么想法可以解决吗?