标签:
1.获取选中的option的内嵌的值
var name = $(ele).find("option:selected").text();
2.查找具有某种属性值的元素如查找class="itemname"的span
find("span[class=itemname]");
3.查找含有class="aa"的text
find("input:text[class=aa]");
标签:
原文地址:http://www.cnblogs.com/SunShineSimple/p/5079644.html