附加到字符串变量[关闭]


Answers:


308

像这样:

var str = 'blah blah blah';
str += ' blah';

str += ' ' + 'and some more blah';

23
var str1 = 'abc';
var str2 = str1+' def'; // str2 is now 'abc def'

它更多是onclick追加到变量。可以用一个变量完成吗?
罗纳尔

当然可以 请参阅下面的其他答案。
James Skidmore

@Ronal-如果您的问题还有其他多余的内容,则应将其添加到问题中,而不要在评论中提出问题,包括可以帮助您获得不错答案的任何信息。
karim79


2

罗纳尔(Ronal),请在上面我的回答中的评论中回答您的问题:

function wasClicked(str)
{
  return str+' def';
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.