0
我有一個應用程序,用戶可以看到一個單元列表。對於每個單元格,用戶可以看到單元格的兩個圖像作爲彈出式菜單。問題是所有圖像都是在選擇列表時下載的,這會使我的頁面變得非常慢。 我希望僅當鼠標滾動鏈接時下載圖像。 有關信息:我使用DOM彈出套件link text如何在軌道上控制彈出與紅寶石,鼠標翻轉
這裏主要頁面和鏈接到彈出菜單
<div id="span_div">
<span id="cell_link_<%= @cell.cellid %>" class="popup_link" Popup.modal = true><%= @cell.cellname%>
<%= render :partial => 'cell_popup' %>
<%= javascript_tag "new Popup('cell_popup_#{@cell.cellid}','cell_link_#{@cell.cellid}')" %>
</span>
</div>
這裏的部分細胞圖像
<div id="cell_popup_<%= @cell.cellid %>" class="popup popup_draghandle" style="display:none">
<table width="418" border="0">
<tr>
<td width="201" align="center" valign="top">Raw</td>
<td width="201" align="center" valign="top">Repaired</td>
</tr>
<tr>
<td align="center" valign="top">
<% if @full_report == true then%>
<%raw_morph = @raw_morph.last%>
<img src="<%= url_for(:action => 'jpegfile', :controller => 'neuronviewer',:morph_id => raw_morph.morphologyid)%>" alt="" width="200" height="200"/>
<%end%>
</td>
<td align="center" valign="top">
<%if @repaired == true then%>
<%repaired_morph = @repaired_morph.last%>
<img src="<%= url_for(:action => 'jpegfile', :controller => 'neuronviewer', :morph_id => repaired_morph.morphologyid)%>" alt="" width="200" height="200"/>
</td>
</tr>
<%end%>
</table>
任何人有任何想法做到這一點?
非常感謝,這是我需要 – 2009-11-20 16:05:52
沒問題。希望它能夠像書面一樣工作,即使它沒有,它應該足夠接近以便通過錯誤消息找出答案。 – EmFi 2009-11-20 16:13:51