如何使用符号作为 JavaScript 函数的参数

发布于 2024-12-11 14:47:44 字数 259 浏览 0 评论 0原文

在我的标头中,我正在使用该函数,

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷…雨湿花 2024-12-18 14:47:44

你必须引用你的符号。在 JavaScript 中,双引号字符与单引号字符具有相同的效果。当您在 JavaScript 中引用某些内容时,引用内的内容将按字面解释,并且创建的对象是一个字符串。

changefinal(".");
changefinal('.');

如果您必须在同一个引号内使用文字引号(例如 ""..."),请在内部引号前添加反斜杠前缀,以 转义引用:

var string = 'I\'m Rob W.';
alert(string); //shows: I'm Rob W.

var attempt = 'I'm Rob W.'; //Notice: No backslash
                 ^ Syntax error

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.

changefinal(".");
changefinal('.');

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:

var string = 'I\'m Rob W.';
alert(string); //shows: I'm Rob W.

var attempt = 'I'm Rob W.'; //Notice: No backslash
                 ^ Syntax error
风向决定发型 2024-12-18 14:47:44

好吧,

changefinal(.);

这是一个语法错误。你可能想要

changefinal(".");

Well

changefinal(.);

is a syntax error. You probably want

changefinal(".");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文