function _getRandomString(len) {//随机生成指定长度字符串
var chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'; 
var maxPos = chars.length;
var str = '';
for (i = 0; i < len; i++) {
str += chars.charAt(Math.floor(Math.random() * maxPos));
}
return str;
}function thrFunction()
{
var str = _getRandomString(6);
$("#thrList").append("<li id='"+str+"' class='choose'><div class='drop droppable'>新增表项</div></li>");
dropp();
}