获取ul li的value的值
摘要:
<script> $(function(){ $(".month-list").find("li").click(function(){ var text = $(this).text(); var value = $(this).attr("value"); alert(text+" -- "+value); }); }); </script> 阅读全文
posted @ 2019-05-14 10:19 飞离地平线 阅读(1210) 评论(0) 推荐(0) 编辑