在这个函数中
$(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”并分别使用它们。我用过爆炸但是它无法工作我能做什么?
答案 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"