如何在另一个用户控件ID中获取用户控件ID?

时间:2012-05-02 09:23:49

标签: javascript user-controls

如何在另一个用户控件中获取一个用户控件ID。使用java脚本。 请帮帮我。

 window.onload = function CheckQueryString() 
 {      
  // here i want to get user control id

 }

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题是正确的,你可以做这样的事情

// get a handle on your original control 
var myControl = $('[id$="<controlID>"]'); 
// and then access it's properties 
var myRuntimeId = myControl.eq(0).attr('id');