我有一个意外的令牌错误,我似乎无法解决。
dirB
如果我删除里面的$ clone函数,该函数有效。
dirC
我尝试过这个函数的一些变体,但我似乎无法让它在没有错误的情况下运行。任何帮助将不胜感激!
答案 0 :(得分:1)
您需要在下一行添加')'
并删除'}'
$(function () {
$('input[type="redditSearch"]').on('change', function () {
var $clone = $(".redditContainer").eq(0).clone().appendTo("#redditMain");
$clone.attr('id',$clone.attr('id').replace(/\d+$/, function(str) { return parseInt(str) + 1; }) );
$clone.find('[id]').each(function() {
var $th = $(this);
var newID = $th.attr('id').replace(/\d+$/, function(str) { return parseInt(str) + 1; });
$th.attr('id', newID);
}) //add ) here
loadRedditData($(this).val());
});
});