gpt4 book ai didi

javascript - 如何从 aspx.cs 调用 javascript 方法

转载 作者:太空宇宙 更新时间:2023-11-03 23:22:34 24 4
gpt4 key购买 nike

我想在选择 listbox1 项时从 aspx.cs ( c# ) 在 javascript 中调用方法 hello()。使用此代码来执行此操作但无法正常工作

protected void ListBox1_TextChanged(object sender, EventArgs e)
{
ClientManager.RegisterStartupScript(this, GetType(), "whatiskey","hello();", true);
}

    function hello() {
alert("hiiiii");
var arr = ["<%=myvalue %>"];


}

最佳答案

将 ListBox 的“AutoPostBack”属性设置为“true”并使用 Page.ClientScript.RegisterStartupScript(GetType(), "whatiskey", "hello();", true); 对我有用

关于javascript - 如何从 aspx.cs 调用 javascript 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34896390/

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