任何想法 - 为什么我的 javascript 中的逻辑在我的 console.log 显示 h2_JSON 是一个对象 {} 时落入此条件的“ELse”部分?
if (h2_JSON == {})
{
window.location.href ='/coursecatalog/retrieveCourses/1/' + h1key;
}
else
{
var html_output = "";
for (var key in h2_JSON)
{
html_output += "<a href=\"javascript:gettingLevel3(\'" + h2_JSON[key] + "\')\">" + key + "</a><br />";
console.log(html_output);
}
}