如何使用符号作为 JavaScript 函数的参数
在我的标头中,我正在使用该函数,
function changefinal(text)
{
if (text == ".")
{
final = final + ".";
}
}
但是当我将该函数调用为changefinal(.) 时,我的最终变量不会改变。不确定我在这里做错了什么。难道是我定义的参数错误?
In my header i'm using the function
function changefinal(text)
{
if (text == ".")
{
final = final + ".";
}
}
But when I call the function as changefinal(.) my final variable does not change. Not sure what I'm doing wrong here. Am I defining the parameter wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须引用你的符号。在 JavaScript 中,双引号字符与单引号字符具有相同的效果。当您在 JavaScript 中引用某些内容时,引用内的内容将按字面解释,并且创建的对象是一个字符串。
如果您必须在同一个引号内使用文字引号(例如
"
内"..."
),请在内部引号前添加反斜杠前缀,以 转义引用:You have to quote your symbols. In JavaScript, a double quotation character has the same effect as a single quote-character. When you're quoting something in JavaScript, the contents inside the quote is interpreted literally, and the created object is a string.
If you ever have to use a literal quote inside the same quote (example
"
inside"..."
), a prefix the inner quote by a backslash, to escape the quote:好吧,
这是一个语法错误。你可能想要
Well
is a syntax error. You probably want