$("#content").html("<h1>Valid Types</h1><ul><li><a href='" + SITE_URL + "/Custom_App/?app_type=frame&session_id=" + session_id + "&cart_id= " + cart_id + ">Custom Frame</a></li></ul>");
它只显示:
<h1>Valid Types</h1>
<ul><li></li></ul>
答案 0 :(得分:2)
$("#content").html("<h1>Valid Types</h1><ul><li><a href=\"" + SITE_URL + "/Custom_App/?app_type=frame&session_id=" + session_id + "&cart_id= " + cart_id + "\">Custom Frame</a></li></ul>");
它应该有用。