$("#myShortcutDiv").append("
“)如题。
$("#myShortcutDiv").append("<div class="nav_item" index="1" id="-3105659376001135908" title="行政审批"><div sty...
最外层用单引号
$("#myShortcutDiv").append('<div class="nav_item" index="1" id="-3105659376001135908" title="行政审批">');
$('#table').append("
"+a.T+""+a.N+""+a.+尽可能不要拼接html,而是采用对象定义的方式,比如 var obj=$("");obj.attr("href","">;$("#myShortcutDiv").append(obj);另外也可以用数组的join方式组织字符串。