gpt4 book ai didi

asp.net - 将 asp 超链接文本更改为图像

转载 作者:行者123 更新时间:2023-11-28 14:15:18 26 4
gpt4 key购买 nike

我有以下 asp 超链接:

<asp:HyperLink ID="a" runat="server" Text="return" NavigateUrl="https://google.com/"></asp:HyperLink >

我想要的是当用户切换到另一个页面而不是这个文本时应该显示一个图像。有没有办法使用CSS将文本更改为图像?还是jquery?或者是否有任何 .net 函数可以做到这一点?

最佳答案

在 asp:hyperlink 上使用 imageurl 属性

    <asp:HyperLink ID="myHyperlink" runat="server" 
ImageUrl="imageLocation.png" Text="return"
NavigateUrl="https://google.com/">
</asp:HyperLink>

编辑:您可以为超链接指定一个特定的 id 并定位它的第一个 child ,这将是图像并使用 .toggle() 将其删除,然后使用 .html() 添加您想要的文本。

在 Jquery 中:

$(document).ready(function(){
$("#<%= myHyperlink.ClientID%>").children( ":first" ).toggle();
$("#<%= myHyperlink.ClientID%>").html("This is text");
});

认为这应该有效。抱歉之前没有正确阅读。

关于asp.net - 将 asp 超链接文本更改为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9101838/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com