JQuery 字符串截取

//字符串截取,全小写

strObj.substring(startIndex,endIndex);

//需要注意大小写

strObj.lastIndexOf(String splitObj);

//JqueryEasyUI Combobox 取 value 和 text

$('#com').combobox('getValue')获取当前选中的值
$('#com').combobox('getText')获取当前选中的文字

原文地址:https://www.cnblogs.com/theblueberry/p/4150747.html