--------------------------------------------------------------------
--------------------------------------------------------------------
/**
* layui: select plugin, selected by default
* ps: single drop-down box
* @param drop-down box id
* @param Want to make the selected value: str
*/
function layuiSelected(id,str){
//0. Set the value of select
$("#"+id).attr("value",str);
//0.1 Change the selected option under select to the current one
$("#"+id).children("option").each(function(){
if ($(this).text() == str) {
$(this).attr("selected","selected");
}else{
if ($(this).attr("selected") == "selected") {
$(this).removeAttr("selected");
}
}
});
//1. Set the input frame first
$("#"+id).siblings("div[class='layui-unselect layui-form-select']").children("div[class='layui-select-title']").children("input").val(str);
//2. Secondly, set dd under dl
$("#"+id).siblings("div[class='layui-unselect layui-form-select']").children("dl").children("dd").each(function(){
if ($(this).text() == str){
if (!$(this).hasClass("layui-this")) {
$(this).addClass("layui-this");
$(this).click();
}
return true;
}else{
if ($(this).hasClass("layui-this")) {
$(this).removeClass("layui-this");
}
}
});
}