1

我是一个新手,我继承了一些讨厌的 jquery 代码。我正在尝试找到一种方法,以便在发现错误时将字符串替换为另一个字符串。这是原始代码..

    W.load = function (b) {
    var c, d, g = W.prep; S = ! 0, Q = ! 1, O = x[P], b || _(a.extend(J, a.data(O, e))), ba(l), ba(h, J.onLoad), J.h = J.height? Z(J.height, "y") - M - K: J.innerHeight && Z(J.innerHeight, "y"), J.w = J.width? Z(J.width, "x") - N - L: J.innerWidth && Z(J.innerWidth, "x"), J.mw = J.w, J.mh = J.h, J.maxWidth &&(J.mw = Z(J.maxWidth, "x") - N - L, J.mw = J.w && J.w < J.mw? J.w: J.mw), J.maxHeight &&(J.mh = Z(J.maxHeight, "y") - M - K, J.mh = J.h && J.h < J.mh? J.h: J.mh), c = J.href, V = setTimeout(function () {
        B.show()
    },
    100), J.inline?(Y().hide().insertBefore(a(c)[0]).one(l, function () {
        a(this).replaceWith(z.children())
    }), g(a(c))): J.iframe? g(" "): J.html? g(J.html): $(c)?(a(Q = new Image).addClass(f + "Photo").error(function () {
        //J.title = ! 1, g(Y("Error").text("This image could not be loaded"))
        J.title = ! 1, a(this).href.replace('http://www.old.com','http://www.new.com');
    }).load(function () {
        var a; Q.onload = null, J.scalePhotos &&(d = function () {
            Q.height -= Q.height * a, Q.width -= Q.width * a
        },
        J.mw && Q.width > J.mw &&(a =(Q.width - J.mw) / Q.width, d()), J.mh && Q.height > J.mh &&(a =(Q.height - J.mh) / Q.height, d())), J.h &&(Q.style.marginTop = Math.max(J.h - Q.height, 0) / 2 + "px"), x[1] &&(P < x.length - 1 || J.loop) &&(Q.style.cursor = "pointer", Q.onclick = function () {
            W.next()
        }), m &&(Q.style.msInterpolationMode = "bicubic"), setTimeout(function () {
            g(Q)
        },

我已将代码更改为此..

J.title = ! 1, a(this).href.replace('http://www.old.com','http://www.new.com');

但它不起作用。呸!任何帮助将不胜感激。:)

更新*

上面的代码是我正在工作的部分的完整代码..

更新#2

这个答案有效,但我需要做......

a(this).attr('src', function(i, current){ 
 if ( i === 'http://www.old.com'){
 return current.replace('http://www.old.com','http://www.new.com');
 }
 else if ( i === 'http://www.older.com'){
 return current.replace('http://www.older.com','http://www.new.com');
}
 else ();
 })

这不工作!帮助!!

4

2 回答 2

1

尝试

this.href.replace('http://old.com/' , 'http://new.com/');

如果要将实际属性更改为当前元素上的新属性,则

this.href = this.href.replace('http://old.com/' , 'http://new.com/');

如果您在一个引用<a>元素的处理程序中,则this引用该对象,并且您不需要从中创建一个 jquery 对象来访问其属性。所以this.href将直接引用href链接的属性。


免责声明:那是混淆/编码的脚本,您最好找到生成它的原件。这段代码没有意义,我们的建议真的是盲目的。

乍一看,它似乎this是图像而不是链接,因此如果要显示新图像,则需要更改src属性,而不是href图像上不存在的属性。

a(this).attr('src', function(i, current){ return current.replace('http://www.old.com','http://www.new.com');})

但你也应该console.log(a.fn.jquery)在那里做一个以确保这a是对jQuery

于 2012-12-31T12:09:31.927 回答
0

您需要更换吗?如果您只想更改网址,那么您可以这样做。

J.title = ! 1, $(this).attr('href', 'http://new.com/*');

它将当前 url 替换为给定的新 url。

于 2012-12-31T12:05:17.143 回答