es6 string template 字符串模板

字符串模板(template string)解决了拼html的痛苦,没有字符串模板前,须要这么写html var myName = "itsme"; var html = "<input type=\"text\" name=\"myName\" value=\""+myName+"\"/>"; console.log(html); 大量的转义字符、+号,很容易拼错并且不容易排查。为了解决这个问题
相关文章
相关标签/搜索