我不确定为什么我无法链接到其他网页。来自logcat
的错误是语法错误。有人可以帮忙吗?谢谢
for (var i = 0; i < arr.length; i++) {
$("#forumtable").append("<tr><td>" + "<b>Topic: </b>" + arr[i].topic_name + "<b><br>Content: </b>"
+ arr[i].topic_content + "<b><br>Date: </b>" + arr[i].topic_date + "<b><br>By: </b>" + arr[i].topic_creator
+ "<b><br>Total Views: </b>" + arr[i].topic_views + "</td><td><a href='#' class='ui-btn' onClick=window.location='forumdetails.html?topic_id=" + arr[i].topic_id + " &cat_id=" + arr[i].cat_id + "'>View </a></tr><br><br>");
}
答案 0 :(得分:0)
你引用了问题,你可以添加转义双引号\"
arround onclick
:
... onClick=\"window.location='forumdetails.html?topic_id="+arr[i].topic_id+" &cat_id="+arr[i].cat_id+"'\">View ...
希望这有帮助。