JavaScript 从数组中查找值,替换为下一个索引

发布于 2024-11-16 05:56:28 字数 496 浏览 4 评论 0原文

我有一个像这样生成的字符串变量

domNodes += '<a href="javascript: void(0);" data-role="node_jump" data-node="'+this.tagName.toLowerCase()+'">'+this.tagName + "</a>" + " &raquo; ";

我还有一个数组,其中包含一个二维数组,其中包含要查找的字符串和要替换为的字符串:

var replaceTags = [["i", "em"], ["b", "strong"]];

If this.tagName == i 然后替换为 em,与 bstrong 相同。

我知道这很简单,因为我以前做过,我只是不记得怎么做了:(

I have a string variable which is generated like this

domNodes += '<a href="javascript: void(0);" data-role="node_jump" data-node="'+this.tagName.toLowerCase()+'">'+this.tagName + "</a>" + " » ";

I also have an array which houses a 2D array with a string to lookup and a string to replace it with:

var replaceTags = [["i", "em"], ["b", "strong"]];

If this.tagName == i then replace with em the same for b and strong.

I know this is simple because I've done it before, I just can't remember how :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

土豪 2024-11-23 05:56:28

http://jsfiddle.net/Nw45Y/

var replaceTags = [["i", "em"], ["b", "strong"]];
var tn = this.tagName;
for (var i =0; i < replaceTags.length; i++) {
    tn = tn.replace(new RegExp(replaceTags[i][0], 'g'),replaceTags[i][1]);
}

http://jsfiddle.net/Nw45Y/

var replaceTags = [["i", "em"], ["b", "strong"]];
var tn = this.tagName;
for (var i =0; i < replaceTags.length; i++) {
    tn = tn.replace(new RegExp(replaceTags[i][0], 'g'),replaceTags[i][1]);
}
楠木可依 2024-11-23 05:56:28

您可以创建一个像这样的函数:

function replaced(x) {
    var replaceTags = [["i", "em"], ["b", "strong"]];
    for(var i = 0; i < replaceTags.length; i++) {
        if(replaceTags[i][0] === x) return replaceTags[i][1];
    }
    return x;
}

然后像这样调用它:

data-node="'+replaced(this.tagName.toLowerCase())+'"

You can create a function like this:

function replaced(x) {
    var replaceTags = [["i", "em"], ["b", "strong"]];
    for(var i = 0; i < replaceTags.length; i++) {
        if(replaceTags[i][0] === x) return replaceTags[i][1];
    }
    return x;
}

Then call it like:

data-node="'+replaced(this.tagName.toLowerCase())+'"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文