Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个元素
$get(myId).children[0]
我想把那个元素变成一个 ms ajax 对象但是
$get($get(myId).children[0])
不工作。
$get 只找到一个元素。如果您有一个表示 AJAX 控件的元素,请使用 $find,它将控件的 ID 作为参数,如下所示:
$find("MyControlClientID")
所以你想做:
$find($get(myId).children[0].ClientID)
如果第一个子元素是 AJAX 控件 UI 元素。