我有一个包含以下基本内容的 js.erb:
$("#currencies").html("<%= options_for_select([['Dollar', '$']])%>");
并且没有将 html 添加到元素#currencies。
但是,如果我这样做:
$("#currencies").html('<option value="$">Dollar</option>');
正在更新 html。
会发生什么?
出于调试目的,我尝试过这个:
alert("<%= options_for_select([['Dollar', '$']]) %>");
它也没有显示任何东西。