最佳答案
给这个 html,我想从它抓取“八月”当我点击它:
<span class="ui-datepicker-month">August</span>
我尽力了
$(".ui-datepicker-month").live("click", function () {
var monthname = $(this).val();
alert(monthname);
});
但似乎没什么效果