在 Telerik radgrid 图像按钮中调用 jquery 函数
我在使用 RadGrid 和 Jquery 时遇到一个问题。
我有一个 Telerik RadGrid,其中包含 2 个图像按钮。当我单击图像按钮时,这些按钮应该调用 jquery 函数。我不知道如何实现这一点。
这是我的 jQuery 函数:
$(function () {
$("#Link1").click(function(evt) {
evt.preventDefault();
$('#panelText').slideToggle('slow');
});
});
I have one problem with RadGrid and Jquery.
I have a Telerik RadGrid which contains 2 imagebuttons. When I click on imagebuttons, these buttons should call the jquery functions. I'm not getting how to implement this.
This is my jQuery function:
$(function () {
$("#Link1").click(function(evt) {
evt.preventDefault();
$('#panelText').slideToggle('slow');
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须执行类似的操作
一旦控件在页面上呈现,它们就会被分配唯一的 ClientID,而您无法在 JS 中直接访问该 ClientID - 但您可以使用此方法通过抓取正确的 ClientID 来注入它从服务器。
You'll have to do something like
Once the controls are rendered on the page, they get assigned unique ClientID's which you don't have direct access to in your JS -- but you can use this method to inject the correct ClientID by grabbing it from the server.