我有一个这样的脚本,我在其中一个pdf html视图中添加了
<%= javascript_include_tag "http://code.jquery.com/jquery-1.10.0.min.js" %>
<%= javascript_include_tag "http://code.jquery.com/ui/1.10.3/jquery-ui.min.js" %>
<script>
$(document).ready(function () {
var header_height = $("#custom_header").height();
<% @height %> = header_height
});
</script>
这里我需要将header_height值分配给@height但它不能使用上面的脚本,我需要在脚本外部访问该变量,所以任何人都可以帮助我