gpt4 book ai didi

javascript - 向 OnClientClick 事件添加字符串参数

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

我有一个链接:

OnClientClick='<%# String.Format("openWin({0}, {1}, {2});return false;",DataBinder.Eval(Container,"DataItem.component_id"), DataBinder.Eval(Container,"DataItem.control_id"), 'string value')%> ' />

这是失败的,因为我确定如何添加最后一个字符串变量(由“字符串值”表示)

最佳答案

试试这个

OnClientClick='<%# String.Format("openWin({0}, {1}, \"{2}\");
return false;"
,DataBinder.Eval(Container,"DataItem.component_id")
,DataBinder.Eval(Container,"DataItem.control_id")
,"string value")%> ' />

单引号会导致

Parser Error Message

因为您还对 OnClientClick 属性使用单引号。使用 \" 转义引号应该可以完成工作。

编辑

使用以下方法以避免

Compiler Error Message: CS1010: Newline in constant

OnClientClick='<%# String.Format("openWin({0}, {1}, \"{2}\");return false;",DataBinder.Eval(Container,"DataItem.component_id"),DataBinder.Eval(Continer,"DataItem.control_id"),"string value")%> ' />

关于javascript - 向 OnClientClick 事件添加字符串参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31428732/

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