0
私は現在の値で更新することに集中できません。このコードにバグがありますか、または私が紛失しているよりクリーンなアプローチがありますか? 「これ」または「イベント」を渡すことはできますか?私はこのコードのブロックを持っている関数への.live()イベントの連結
'focused is not defined'
:
私はこのエラーを取得しています
function onHelp() {
if (!helpDiv) {
helpDiv = $('#helpText');
}
var $this = $(this);
var text = $this.attr('title');
if ($this.attr('titlehtml')) {
var text = $this.attr('titlehtml');
}
if ($this.hasClass('screenshot')) {
text += "<img src='images/icon_table_" + $this.attr('id') + ".png' >";
}
if ($this.attr('errorhtml')) {
text += "<div id='userError'>"+$this.attr('errorhtml')+"</div>";
}
helpDiv.show().html(text);
}
function helpFallback() {
if (focused) {
helpDiv.show().html(focused);
} else {
helpDiv.hide();
}
}
あなたは実際にどこに焦点を当てていますか?私は 'var focused = false;'がどこにも見当たりません。 –
コードの第2ブロックを見てください。あなたは 'var focused = ''を意味します;'?うん、それは.... – roberthuttinger
うーん...私は 'var focused = '';'どこにも表示されません。 – user113716