1

我正在使用 rails 2.3 并且有问题。我有远程表单,当我提交它时,我需要执行一些 js。这是我的 js.erb 文件

$(document).ready(function () {
$("#block_login").remove();
$("#header").html("");
$("#header").html("<%= render :partial => "/layouts/header" %>");
});

在 js 控制台我有一个错误

> Uncaught SyntaxError: Unexpected identifier jquery.js:593
> jQuery.extend.globalEval jquery.js:593
> jQuery.ajaxSetup.converters.text script jquery.js:7175 ajaxConvert
> jquery.js:7074 done jquery.js:6622 jQuery.ajaxTransport.send.callback

这是渲染的原因。

部分工作正常,因为我已经用 html 渲染它,一切都很好。这是我的布局/_header

<div id="header">
   <% if current_user.present? %>
       <div class="icon_1"><%= link_to 'Выход', logout_path %>
       <span>|</span><%= link_to 'Моя страница', user_path(current_user), :class => "registration"  %>    </div>
   <% else %>
       <div class="icon_1"><a href="#" onClick="block_login();">Вход</a>
       <span>|</span><%= link_to 'Регистрация', new_user_path, :class => "registration" %></div>
   <% end %>
   <div class="clear"></div>
   <table width="100%" cellpadding="0" cellspacing="0">
     <tr>
       <td width="130px">
         <div class="logo"><%= image_tag "/images/logo.png" %></div>
       </td>
       <td>
         <div class="menu">
           <table width="100%" cellpadding="0" cellspacing="0">
             <tr>
               <td>

               </td>
             </tr>
           </table>
         </div>
       </td>
     </tr>
   </table>
 </div>

我做错了什么?提前致谢!

4

1 回答 1

0

也许是引号。尝试使用:

$("#header").html("<%= render :partial => '/layouts/header' %>");

而不是您的代码:

$("#header").html("<%= render :partial => "/layouts/header" %>");
于 2012-06-22T14:40:07.160 回答