ace.js - https://link.jianshu.com/?t=https://github.com/ajaxorg/ace-builds.git
官网及API:
ace.js - https://link.jianshu.com/?t=https://github.com/ajaxorg/ace
所支持的功能,在官方提供的demo里都有,具体的设置参数可翻看API。
1、window.onload=function(){}
<script type="text/javascript">
window.onload=function(){ //初始化内容 }
</script>
2、写初始化方法,页面顺序执行到初始化方法时初始化
<script type="text/javascript">
function init() { // 初始化内容 }
init()
</script>
3、在body里面写初始化方法.
<body onload='init()'>
</body>
<script type="text/javascript">
function init(){ // 初始化内容 }
</script>
扩展资料
js数组的初始化
方法一:
var myarray = new Array(66,80,90,77,59)
方法二:
var myarray = [66,80,90,77,59]
方法三:
var myarray=new Array(5)
myarray[0]=66
myarray[1]=80
myarray[2]=90
myarray[3]=77
myarray[4]=59
数组的属性:
myarray.length//获得数组长度