摘要:
var year = new Date().getFullYear(); var month = new Date().getMonth(); var nowDate = new Date(year,month,0); //最后一个参数为0,意为获取2018年10月一共多少天 var lastDay = nowDate.getDate(); //31 阅读全文
摘要:
data:{ selected:1 }如果option 没有设置value值 selected与option里的内容对比 决定选中那个如果有value值得话 selected 与 value值作对比 决定选中那个 阅读全文