2

我基本上是在尝试添加一个简单的广告横幅代码和另一种包含在脚本中的广告类型,但它们没有显示出来。我试图把它放到我的show.html.erb视图中,这基本上是人们的个人资料。

这是完整的代码,显示了我试图包含广告脚本的位置。我需要将代码放在其他地方吗?

<script src="/jquery.js" type="text/javascript"></script>
<link href="/src/facebox.css" media="screen" rel="stylesheet" type="text/css"/>
<script src="/src/facebox.js" type="text/javascript"></script> 
<script language="javascript">

 jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox() 
}) 

</script>

<% provide(:title, @user.name) %>
<div class="row">
  <aside class="span4">
    <section>
      <h1>
        <%= @user.name %>
       </h1>
      </section>
    <section>
      <%= render 'shared/stats' %>

    </section>
  <br>
  </aside>


  <div class="span10">
    <%= render 'follow_form' if signed_in? %>
    <% if @user.microposts.empty? %>
<h3>Profile</h3>
<% end %>
    <% if @user.microposts.any? %>
      <h3>Browse Text</h3>
      <ol class="microposts">
        <%= render @microposts %>

      </ol>


<script type="text/javascript" src="http://www.URLofAdProvider.com/widget/11xxxxxxxx/"></script>         

    <% end %>
  </div>
  </div>

<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxxxxx";
/* Ad1 */
google_ad_slot = "xxxxxxxxxxx";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

底部的两个脚本是广告脚本。我不能让他们中的任何一个出现。有谁知道为什么我不能显示它们?

4

0 回答 0