标签: path replace anchor relative
我使用此代码替换锚点中的相对路径:
$('a').each(function(){ $(this).attr('href',$(this).attr('href').replace(/.*\.\.\//,"/dev/jmsracing/")); });
它工作正常,但我在页面加载时收到错误: “未捕获的TypeError:无法调用未定义的方法'替换'”
我无法弄清楚为什么我会得到错误。有什么想法吗?