gpt4 book ai didi

javascript - 在代码隐藏中生成动态点击事件

转载 作者:行者123 更新时间:2023-12-03 09:59:58 25 4
gpt4 key购买 nike

我正在 sharepoint 的可视 Web 部件中生成动态 html。

 htmlString = "<a href='#'  onclick='updateAge(" + itemId + ")'>";

我想在C#中的代码后面编写点击事件来实现点击事件。点击事件应该接受参数。

如何实现这一目标?我可以通过编写函数轻松地完成此 JavaScript,但不确定如何在代码后面执行此操作。

最佳答案

假设您已经解决了如何发送链接 html 并且您只需要发送 Javascript,您可以使用 Page.ClientScript.RegisterStartupScript

string script = @"function updateAge(itemId) { 
// here write your logic!
alert(itemId);
someOtherFunction();
}

function someOtherFunction() {
// your logic for this other function
}";
Page.ClientScript.RegisterStartupScript(GetType(), "myscript", script, true);

关于javascript - 在代码隐藏中生成动态点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30628761/

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