22
06月
22
//替换返回的菜单链接
$(window).load(function(){
$("a").mouseover(function () {
var val = $(this).attr('href');
var search = new RegExp('fba.yafex.cn');
if(search.test(val)){
var newHref = val.replace(search,'fba.test');
$(this).attr('href',newHref)
}
});
});
非特殊说明,本文版权归 Smart.Chen个人博客 所有,转载请注明出处.
本文标题: 替换返回的菜单链接