You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/sample/html.md

26 lines
323 B

7 years ago
#这个文件写的是一些实例.
#//注册功能. 可以在unload里面添加
export function test()
{
console.log("!Load");
}
if (window.addEventListener) {
window.addEventListener("load", test)
}
else {
window.addEventListener("onload", test)
}
#Mdn 学习
https://developer.mozilla.org/zh-CN/