具有Prototype的Ajax Updater OnBlur

时间:2014-01-27 20:59:43

标签: ruby-on-rails ajax prototype

我有一个示例Ajax Updater搜索名为“Album”的album_art

<input name="album" id="album" type="text" value="<%= @song.album %>" onblur="new Ajax.Updater('album_cover', ('/setup/album_art?name=Album'), { asynchronous: true, evalScripts: true }); return false;">

如何搜索input album的当前文本值?

('/setup/album_art?name=' + $("album").value()) # didn't work

1 个答案:

答案 0 :(得分:0)

它的''getValue'而不是'value'。试试这个:

('/setup/album_art?name=' + $("album").getValue())