Home  >  Article  >  Web Front-end  >  Example of javascript implementation of storing hmtl string_Basic knowledge

Example of javascript implementation of storing hmtl string_Basic knowledge

WBOY
WBOYOriginal
2016-05-16 16:51:251262browse

Copy code The code is as follows:

Function.prototype.heredoc = function(){
//Use function comments to store strings without escaping.
var _str = this.toString(),
s_pos = _str.indexOf("/*") 2,
e_pos = _str.lastIndexOf("*/");
return (s_pos< 0 || e_pos<0) ? "" : _str.substring(s_pos, e_pos);
}
function fn(){
/*








UsernamePassword
@namezf123456
*/
}
varstr_table =fn.heredoc();
console.log(str_table);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn