资源描述:
《javascript常用代码总结》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、JavaScript常用代码总结1创建脚本块JavaScriptcodegoeshere 2隐藏脚本代码在不支持JavaScript的浏览器中将不执行相关代码3浏览器不支持的时候显示4链接外部脚本文件2、ename.js">5注释脚本//Thisisacommentdocument.write("Hello");//Thisisacomment/*Allofthisisacomment*/6输出到浏览器document.write("Hello"); 7定义变量varmyVariable="somevalue"; 8字符串相加varmyString="String1"+"String2"; 9字符串搜索 10字符串替换thisVar.replace("Monday","Friday");11格式化字串2 12创建数组6、ript">1 13数组排序7、>1 14分割字符串