DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> javascript實現存儲hmtl字符串示例
javascript實現存儲hmtl字符串示例
編輯:JavaScript基礎知識     

復制代碼 代碼如下:
Function.prototype.heredoc = function(){
// 利用 function 的注釋來存儲字符串,而且無需轉義。
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(){
 /*<table>
<tr>
<td>用戶名</td>
<td>密碼</td>
</tr>
<tr>
<td style="widht:20px;">@name</td>
<td>zf123456</td>
</tr>
</table>*/
}
varstr_table=fn.heredoc();
console.log(str_table);

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved