最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I use embedded ruby to dynamically create a jquery selector (in a .js.erb file)? - Stack Overflow

programmeradmin2浏览0评论

As part of an ajax call, I am trying to use embedded ruby to generate the id portion of a jquery select in a .js.erb file. Below is how I got it to work, but I had to use a slight of hand and get the javascript in the browser to concat the id to the selector instead of constructing the jquery selector on the server.

$("tr.design#".concat(<%= @form_column.form_row.id.to_s %>)).html("<%= escape_javascript( render(:partial => "form_rows/row") ) %>")

I tried several binations:

$(<%= escape_javascript("tr.design#" << @form_column.form_row.id.to_s) %>)

$(<%= "tr.design#" << @form_column.form_row.id.to_s %>)

$("tr.design#<%= @form_column.form_row.id.to_s %>")

in each case the selector returned to the client was $(tr.design#17) (without quotes) and therefore was not executed as I wanted on the client, ie jquery didn't find any matches.

The .html("<%= escape_javascript( render(:partial => "form_rows/row") ) %>") portion was sent to the browser correctly, ie the <%= ... %> behaved as expected and the javascript on the browser received nicely formatted, quoted (and escaped) html passed in the .html function.

Anyone got any ideas on how I could avoid the use of .concat in my .js.erb file?

As part of an ajax call, I am trying to use embedded ruby to generate the id portion of a jquery select in a .js.erb file. Below is how I got it to work, but I had to use a slight of hand and get the javascript in the browser to concat the id to the selector instead of constructing the jquery selector on the server.

$("tr.design#".concat(<%= @form_column.form_row.id.to_s %>)).html("<%= escape_javascript( render(:partial => "form_rows/row") ) %>")

I tried several binations:

$(<%= escape_javascript("tr.design#" << @form_column.form_row.id.to_s) %>)

$(<%= "tr.design#" << @form_column.form_row.id.to_s %>)

$("tr.design#<%= @form_column.form_row.id.to_s %>")

in each case the selector returned to the client was $(tr.design#17) (without quotes) and therefore was not executed as I wanted on the client, ie jquery didn't find any matches.

The .html("<%= escape_javascript( render(:partial => "form_rows/row") ) %>") portion was sent to the browser correctly, ie the <%= ... %> behaved as expected and the javascript on the browser received nicely formatted, quoted (and escaped) html passed in the .html function.

Anyone got any ideas on how I could avoid the use of .concat in my .js.erb file?

Share Improve this question asked May 30, 2012 at 20:24 ccurtisccurtis 351 silver badge4 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

Like this

$('#user_<%= @user.id %>').click(blah blah blah);

If you place <%= %> in a js.erb file, that code is evaluated an printed in the resultant JS. You can construct any unique string you want. Probably :classname_:id is most mon solution.

By the way, the evaluated code don't has to be an string. <%=%> calls .to_s for printing. In that example, the @user.id is converted into a string.

ids are unique you probably can do

$("#"+<%= @form_column.form_row.id.to_s %>)

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论