我想在更改时提醒开关的值,但是警报框中出现了一些长代码链
HTML
<div align="right">
<select name="switch" id="alleventsswitch" data-role="slider" data-mini="true">
<option value="off">No Past</option>
<option value="on">Past</option>
</select>
</div>
JAVASCRIPT
$('#alleventsswitch').change( function() {
alert($('select').slider().val);
});
显然 .val 不起作用