コンストラクターSmartButton内でmakeHighlightという関数を実行しようとしています。makeHighlightは、SmartButtonオブジェクト(画像要素)をクリックするたびに実行されることになっているため、属性'onclick'をmakeHighlightに設定します。動作させることができません。まったく実行されないか、ページが読み込まれるとすぐに実行されます。
function SmartButton(buttonId, defaultImage, highlightImage, helpMsg) {
var newLink = document.createElement('a');
newLink.setAttribute('href', '#');
var newImg = document.createElement('img');
newImg.setAttribute('src', defaultImage);
newImg.setAttribute('id', buttonId);
newImg.setAttribute('onclick', "makeHighlight()");
document.body.appendChild(newLink);
newLink.appendChild(newImg);
this.buttonId = buttonId;
this.defaultImage = defaultImage;
this.highlightImage = highlightImage;
this.helpMsg = helpMsg;
function makeHighlight() {
newImg.setAttribute('src', highlightImage);
console.log(this);
}
}
button1 = new SmartButton('button1', 'button1off.jpg', 'button1on.jpg', 'sup');