代码拉取完成,页面将自动刷新
同步操作将从 tom/javascript template 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!DOCTYPE html>
<html lang='zh-CN'>
<head>
<meta charset='utf-8'>
<meta content='IE=edge' http-equiv='X-UA-Compatible'>
<title>
js-template.js · fushanlang / javascript template - 代码托管 - 开源中国社区
</title>
<script src="js-template.js" type="text/javascript"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js" type="text/javascript"></script>
<script type="text/javascript">
function run(){
$('#template_code_output').val(js_template($('#template_code').val(),{'names':['tom','jerry','david']}));
$('#out_put_div').html($('#template_code_output').val());
}
var Timer = function (){
this.startTime = + new Date;
};
Timer.prototype.stop = function(){
return + new Date - this.startTime;
};
// 数据量
var length = 100;
// 渲染次数
var number = 10000;
var data = {
list: []
};
for (var i = 0; i < length; i ++) {
data.list.push({
index: i,
user: '<strong style="color:red">糖饼</strong>',
site: 'http://www.planeart.cn',
weibo: 'http://weibo.com/planeart',
QQweibo: 'http://t.qq.com/tangbin'
});
};
function test(){
var time = new Timer;
var render = js_template($('#template_code').val());
var render2 = js_template($('#template_code2').val());
for (var i = 0; i < number; i ++) {
render({'list':data.list});
}
var endTime = time.stop();
alert(endTime);
}
</script>
</head>
<body>
<textarea id="template_code" style="width:400px;height:600px;">
<js> for(var i=0;i<vars.list.length;++i){</js>
<label><h1><js>output+=vars.list[i]['user'];</js></h1><js>output+=vars.list[i]['site'];</js></label>
<js> }</js>
</textarea>
<textarea id="template_code2" style="width:400px;height:600px;">
<table>
<tr><td></td></tr><js>alert('hello');</js>
</table>
</textarea>
<button onclick="run();">Run</button>
<button onclick="test();">Test</button>
<textarea id="template_code_output" style="width:400px;height:600px;" >
</textarea>
<hr/>
<br/>
<div style="border:blue solid 1px;">
<div id="out_put_div">
</div>
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。