zepto获取select元素当前选中option

//jQuery
$("#select_city").find("option:selected");


//zepto
$("#select_city option").not(function(){ return !this.selected })

  

原文地址:https://www.cnblogs.com/dtdxrk/p/4251964.html