0

下面是我的 JavaScript 函数

function HighlightWord(highlightword) {
       alert(highlightword);
}

当我使用下面的代码将值传递给上述函数时

Page.ClientScript.RegisterStartupScript(this.GetType(), "onload", "HighlightWord(abc)", true);

警报显示“未定义”。这有什么问题?谢谢。

4

1 回答 1

2
Page.ClientScript.RegisterStartupScript(this.GetType(), "onload", "HighlightWord(abc)", true); 

意味着提醒abc我假设你没有的变量。它应该是

Page.ClientScript.RegisterStartupScript(this.GetType(), "onload", "HighlightWord('abc')", true);`. 

这将提醒“abc”,这是我假设你想要发生的。

于 2013-10-27T10:54:48.663 回答