gpt4 book ai didi

Javascript this.href 来自 asp.net 代码背后

转载 作者:行者123 更新时间:2023-12-02 19:37:14 25 4
gpt4 key购买 nike

如何从 asp.net 代码后面传递 this.href?这是我所拥有的,在 JavaScript 中我添加了一个警报来查看该值,它显示“未定义”

Page.ClientScript.RegisterStartupScript(this.GetType(), "Sample", "Callscript(this.href);", true);

function Callscript(href)
{
alert(href);
}

最佳答案

href 不是全局对象的属性。我相信您正在寻找window.location.href:

Page.ClientScript.RegisterStartupScript(this.GetType(), "Sample", "Callscript(window.location.href);", true);

关于Javascript this.href 来自 asp.net 代码背后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10805451/

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