我试图用一个选择点击Change事件,但这次事件没有发射。
我选择了以下法典:
<select onchange="myEvent()" name="configuration[notifications_enabled]" id="configuration[notifications_enabled]" data-role="slider">
<option value="0" <%= "selected" if Integer(@configuration.notifications_enabled) == 0 %>>O</option>
<option value="1" <%= "selected" if Integer(@configuration.notifications_enabled) == 1 %>>|</option>
</select>
我的档案中还有以下活动:
<script type="text/javascript">
function myEvent() {
<% app_info("inside the event") %>
}
</script>
The message shows up on the console when I first enter the view. But when I change the select button it never gets printed again.
我曾尝试过一次浮标活动,但也没有工作。
我还努力:
<script>
$( #configuration[notifications_enabled] ).change(function()
{
app_info( Value change to + $(this).attr( value ));
});
</script>
但没有发生,甚至也没有错误的信息。
我做了什么错误?
我不清楚我是否能够在罗得上这样做,或者如果我以某种其他方式处理这个问题的话。
增 编