1 Star 0 Fork 0

EngineCoder/WebFrontEnd-Javascript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
EngineCoder 提交于 2022-08-26 18:27 . fix:JavaScript.mmap
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title></title>
<!-- 内部书写 -->
<script type="text/javascript">
// 数据类型:String Number Boolean Array Object null undefined:已声明,没有赋值undefined
// 内置方法:typeof() 判断类型
// alert("Hello World!");
document.addEventListener('plusready', function(){
//console.log("所有plus api都应该在此事件发生后调用,否则会出现plus is undefined。")
});
function MyFunName(){
console.log("哎呦我去")
}
function attack(attackMode){
attackMode();
console.log("掉血")
}
attack(function(){
console.log("我使用刀进行攻击");
});
// window.alert("你好1");
// console.log("你好2");
// document.write("你好3");
var str1="What's this?";
// alert(str1);
str1[2]="-";//无效果,不能修改
console.log(str1.indexOf("h"));//该字符的索引
var str2= str1.concat("Enigne","Server");//拼接字符串
console.log(str2);
var str3= str2.slice(2,6);//截取字符串
console.log(str3);
var str4= str2.slice(-7,-3);//倒截字符串
console.log(str4);
var str5= str2.substring(2,3);//截取字符串
console.log(str5);
var str6= str2.substr(2,3);//截取字符串,3是截取的个数,0时截取到最后
console.log(str6);
var str7= str2.split(" ",3);//按某字符串分割, 3表示字符串长度
console.log(str7);
var username=" sdasd ";
var newstr=username.trim();
console.log(username);
console.log(newstr);
</script>
<!-- 外部引入 -->
<script type="text/javascript" src="js/00-Start.js"></script>
</head>
<body>
<!-- 行内书写 -->
<font onclick="MyFunName()">Hello</font>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/CoderEngine/web-front-end-javascript.git
git@gitee.com:CoderEngine/web-front-end-javascript.git
CoderEngine
web-front-end-javascript
WebFrontEnd-Javascript
master

搜索帮助