我有一个带有select_tag控件的Rails视图(mycontroller / index)。
我想根据select_tag值刷新它,所以如果我更改它的值表单将使用新值刷新。我怎么能这样做?
$(document).on 'ready page:load', ->
$('#time').on "change", -> (
value = $(this).val()
$.ajax
url: "my/_statistics?time=" + value
type: "GET"
success: (data) -> (
#$('#_statistics').html(data) if I'll comment this line it will work good
alert data
)
)
答案 0 :(得分:0)
这是基础知识。在咖啡脚本中,您可以执行类似
的操作$(document).on 'ready page:load', ->
$('#select_field').on "change", ->
value = $(this).val()
# Use value to update your form