如何在脚本中拆分字符串
How to split string in script
在这个函数中
$(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”并分别使用。我使用了 explode 但它不起作用我该怎么办?
explode
是一个 PHP 函数,因此它在 javascript.
中不起作用
使用split('_')
你可以这样使用:
var id = this.id;//"r_1"
var rr = id.split('_');
//and use like this:
rr[0];//"r"
rr[1];//"1"
在这个函数中
$(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”并分别使用。我使用了 explode 但它不起作用我该怎么办?
explode
是一个 PHP 函数,因此它在 javascript.
使用split('_')
你可以这样使用:
var id = this.id;//"r_1"
var rr = id.split('_');
//and use like this:
rr[0];//"r"
rr[1];//"1"