我想在aspx.cs(c#)中調用JavaScript中的方法hello(),當選擇listbox1項目時。使用此代碼執行操作但不起作用如何從aspx.cs中調用javascript方法
protected void ListBox1_TextChanged(object sender, EventArgs e)
{
ClientManager.RegisterStartupScript(this, GetType(), "whatiskey","hello();", true);
}
function hello() {
alert("hiiiii");
var arr = ["<%=myvalue %>"];
}
不工作意味着什麼?您是否收到任何錯誤消息 –
沒有錯誤,只是方法沒有執行 – phpnet
嘗試:Page.ClientScript.RegisterStartupScript(GetType(),「whatiskey」,「hello();」,true); – Zaki