我有一个加载到div中的页面。我在div中加载的页面有一个链接,它将一个参数带到另一个页面进行删除。当我点击div中加载的页面时,它会转到删除页面。但我想要它做的是在删除工作的同时留在页面上。
<script type="text/javascript">// <![CDATA[
$(document).ready(function() {
$.ajaxSetup({ cache: false }); // This part addresses an IE bug. without it, IE will only load the first number and will never refresh
setInterval(function() {
$('#call_fav').load('call_fav.asp');
}, 3000); // the "3000" here refers to the time to refresh the div. it is in milliseconds.
});
// ]]></script>
这是我调用div的页面
<div class="show-image" id="container">
<img src="usr_up_img/<%=(rs_favorites.Fields.Item("pic").Value)%>" alt="" height="60" align="left" />
<input name="fav_id" type="hidden" id="fav_id" value="<%=(rs_favorites.Fields.Item("fav_id").Value)%>" />
<a href="call_fav.asp?<%= Server.HTMLEncode(MM_keepURL) & MM_joinChar(MM_keepURL) & "fav_id=" & rs_favorites.Fields.Item("fav_id").Value %>">
<img src="imgs/close.png" alt="" width="15" height="15" class="the-buttons" border="0"/>
</a>
</div>
答案 0 :(得分:0)
我相信你必须使用iFrame而不仅仅是div。