我在 jquery 中编写了一段代码,将 href 属性分配给变量。这是代码:
$('#reactions' + i).attr('href', 'javascript:comments ('+entry.url+','+i+');');
这应该分配对 javascript 函数注释的调用。现在我想在 jquery 移动按钮上使用该调用,如下所示:
document.write('<a href="#" id="reactions' + i + '" data-role="button" class="ui-btn-right">Reactions</a>');
但是这样做给了我一个 FF 和 Chrome。这是来自 FF± 的误差
未捕获的异常:ReferenceError:未定义变量:i_heart_chaos_ihc_after_dark_independence_day_through_a_bullhornthis_is_what javascript 中第 1 行第 0 列抛出错误:comments (i_heart_chaos_ihc_after_dark_independence_day_through_a_bullhornthis_is_what,1);: comments (i_heart_chaos_ihc_after_dark_independence_day)bullhornthis_is_day
其中,i_heart_chaos_ihc_after_dark_independence_day_through_a_bullhornthis_is_what
是 的值entry.url
。
我只是不明白为什么会出现这个错误,据我所知,一切都应该工作。我知道有些问题看起来与我的相似,但我无法找到答案。如果您想查看整个源代码,请点击此处。