如何在脚本中拆分字符串

时间:2015-02-16 12:01:47

标签: javascript function explode

在这个函数中

$(document).on("click",".change",function(){
    var id = this.id;

    $.ajax({
        url: "<?php echo base_url('discussions/reader/change_flag')?>",
        type: "post",

        //dataType:"Json",
        data: {
            "id": id
        },
        success: function (result) {
            alert(result);

        }

    });

});

id是“r_1”,我想将其拆分为“r”和“1”并分别使用它们。我用过爆炸但是它无法工作我能做什么?

2 个答案:

答案 0 :(得分:0)

explode是一个PHP函数,因此它无法在javascript中运行。

使用split('_')

答案 1 :(得分:0)

您可以这样使用:

var id = this.id;//"r_1"
var rr = id.split('_');
//and use like this:
rr[0];//"r"
rr[1];//"1"