<button>
idの html に関連付けられた YUI 3 ボタンを作成しようとしています#createSubAccountBtn
。html ビットは次のとおりです。
<button id='createSubAccountBtn'>Create Sub Account</button>
そして、その ID の YUI ボタンを処理およびレンダリングすることになっている JS/YUI3 は、次のようになります。
var createSubAccountBtn = new YUIRef.Button({srcNode: '#createSubAccountBtn', on: {
'click': function(){
alert("Made it to YUI button definition");
newSubAccountClicked();
}
}}).render();
<button>
ドキュメント内の対応するタグをクリックした後、作成したアラートが実行されない理由がよくわかりません。