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.
ウィジェットを ID でラップする必要があるため、次のように GQuery を使用してそれを行いました。
GQuery g = $(signupButton); g.id("signupButton");
ここで、GQuery オブジェクトを使用して実際のボタンまたはウィジェットのインスタンスを取得する必要がありますが、それは可能ですか?
g.get(0)そのボタン/ウィジェットのラップされたインスタンスを返しますか?
g.get(0)
widget() メソッドを使用する
Button b = g.widget(); //later if you want to query your button via its id Button b = $("#signupButton").widget()
ジュリアン