2

我正在尝试.load()#main-contentdiv 从一个特定的元素url转换为我的#pane-other-topics元素,但我得到了一个"Unexpected String Error"我无法追捕的结果。

谁能帮我解决这个小错误?

代码:

jQuery(document).ready(function($) {
        $("a.bbp-topic-permalink").live('click',function() {
            url = $(this).attr('href') . " #main-content";
            $('#other-topics-pane').load( url );
            return false;
        });
    });
4

2 回答 2

3

要在 JS 中连接字符串,请使用 a +not a.

url = $(this).attr('href') + " #main-content";
于 2013-09-06T19:21:14.733 回答
2

试试这个:-

 url = $(this).attr('href') + " #main-content";

代替

 url = $(this).attr('href') . " #main-content";
于 2013-09-06T19:21:10.817 回答