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”,则即使存在多个逗号也只匹配第一个

posted on 2019-12-03 09:50  24ming  阅读(236)  评论(0编辑  收藏  举报