“Test”的版本间的差异

来自Labplus盛思维基百科
跳转至: 导航搜索
第2行: 第2行:
 
* [[ labplus软件安装指南]]
 
* [[ labplus软件安装指南]]
 
{{111}}
 
{{111}}
 +
<source lang="javascript" line start="2" highlight="4-6">
 +
// SyntaxHighlighter makes your code snippets beautiful without tiring your servers.
 +
// http://alexgorbatchev.com
 +
var setArray = function(elems) {
 +
    this.length = 0;
 +
    push.apply(this, elems);
 +
    return this;
 +
}
 +
</source>

2018年3月8日 (四) 17:15的版本

模板:111

// SyntaxHighlighter makes your code snippets beautiful without tiring your servers.
// http://alexgorbatchev.com
var setArray = function(elems) {
    this.length = 0;
    push.apply(this, elems);
    return this;
}