我想链接到另一个页面,其代码来自当前页面

时间:2017-01-24 10:12:19

标签: javascript android jquery html eclipse

我不确定为什么我无法链接到其他网页。来自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>");
}

1 个答案:

答案 0 :(得分:0)

你引用了问题,你可以添加转义双引号\" arround onclick

... onClick=\"window.location='forumdetails.html?topic_id="+arr[i].topic_id+" &cat_id="+arr[i].cat_id+"'\">View ...

希望这有帮助。