过滤第一个这样写:$("#select_parentId").find("option:not(:first and )").remove();
那我要除去第一个和第二个怎么写呢?
$("#select_parentId").find("option:gt(1)").remove();
这种问题要学会自己翻文档http://jquery.cuishifeng.cn/gt.html
嗯嗯,非常感谢