为什么下面的代码没有生成链接?

时间:2014-12-04 14:05:26

标签: jquery

$("#content").html("<h1>Valid Types</h1><ul><li><a href='" + SITE_URL + "/Custom_App/?app_type=frame&amp;session_id=" + session_id + "&amp;cart_id= " + cart_id + ">Custom Frame</a></li></ul>");

它只显示:

<h1>Valid Types</h1>
<ul><li></li></ul>

1 个答案:

答案 0 :(得分:2)

$("#content").html("<h1>Valid Types</h1><ul><li><a href=\"" + SITE_URL + "/Custom_App/?app_type=frame&amp;session_id=" + session_id + "&amp;cart_id= " + cart_id + "\">Custom Frame</a></li></ul>");

它应该有用。