兼容问题 链接不跳转

<asp:Repeater runat="server" ID="rptHotList">
<ItemTemplate>
<li><a href="#" onclick="SetEncodeURL('<%# Eval("Value") %>')">
<%# Eval("Value") %></a></li>
</ItemTemplate>
</asp:Repeater>
  function SetEncodeURL(value) {
window.location.href="search.aspx?ky=" + encodeURIComponent(value);
}

ie6下测试要在href="#"加上这个才可以跳到另外一个页面,其它浏览器可行。

window.onload=load();

function load()
{
var tmp = '<%=topicid%>';
}

这样写取不到值。


posted @ 2011-09-28 13:15  奇幻男孩  阅读(167)  评论(0编辑  收藏  举报