我正在尝试.load()
将#main-content
div 从一个特定的元素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;
});
});