js 返显下拉项 全部替换
//①返显下拉
//服务端返回的已知类型
var instr_type = "${instrInfo.instr_type}";
//遍历下拉项,与已知类型相同的选项展示出来
$("#instr_type").parent().find(".list-select li").each(function(){
if($(this).attr('itemkey') == instr_type){
$("#instr_type").parent().find("span").text($(this).text());
}
});
//②替换
var amount = $("#amount").val().trim().replace(/,/g,"");
注:【/,/g】代表全局匹配逗号“,”,若不加“/g”,则即使存在多个逗号也只匹配第一个