#script

JavaScript-window

window.closedwindow.closed检测页面是否被关闭,关闭为true未关闭为false window.consolewindow.console返回一个console对象的引用,console对象提供了向浏览器控制台打印日志的功能,并不展示给用户console.log('aa')consol...
IT猿 ·2020-03-27

JavaScript字符串API

String.prototype.anchor()anchor()方法用于创建一个<a>html描元素conststr='我是html内容'.anchor('我是name属性值')console.log(str)//"<aname="我是name属性值">我是html内容</a>"&...

JavaScript常用数组操作方法,包含ES6方法

concat()方法用于连接两个或多个数组。该方法不会改变现有的数组,仅会返回被连接数组的一个副本。vararr1=[1,2,3];vararr2=[4,5];vararr3=arr1.concat(arr2);console.log(arr1);//[1,2,3]console.log(arr3);//[1,2,3,...

Javascript模块化编程

http://www.ruanyifeng.com/blog/2012/10/javascript_module.htmlhttp://www.ruanyifeng.com/blog/2012/10/asynchronous_module_definition.htmlhttp://www.ruanyifeng.com...

JavaScript多种继承方式

https://github.com/mqyqingfeng/Blog/issues/16...

关于JavaScript的那些话

1、初学者动手环境----推荐Chrome的控制台(F12调用)2、JS中两个非常重要的数据类型是对象和数组。3、JavaScript程序是用Unicode字符集编写的。4、JavaScript是区分大小写的编程语言。HTML不区分大小写,但尽量保持小写。5、JavaScript数据类型分为两类:原始类型和对象类型,原...

JavaScript教程大纲

   因为考虑到Python的接受难度,改为推广较为简单和流行的JavaScript。先列主要参考资料:     JavaScript权威指南(第6版):http://book.douban.com/subject/10549733/&nb...

Sending forms through JavaScript

https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Sending_forms_through_JavaScriptAsinthe previousarticle, HTMLformscansendan HTTP r...

Angular TypeScript开发环境集成jQuery扩展插件

   集成步骤:   1、安装jquery极其扩展插件库ts定义文件npminstalljquery--savenpminstall--save-dev@types/jquerynpminstalldatatables.net--savenpminstall@...

TypeScript 的声明文件的使用与编写

https://fenying.net/2016/09/19/typings-for-typescript/TypeScript是JavaScript的超集,相比JavaScript,其最关键的功能是静态类型检查(TypeGuard)。然而JavaScript本身是没有静态类型检查功能的,TypeScript编译器也仅...

use ECharts with Angular 2 and TypeScript

https://stackoverflow.com/questions/38158318/is-it-possible-to-use-echarts-baidu-with-angular-2-and-typescriptnpminstall--saveechartsnpminstall--save-dev@types/...

Failed to complete obtain psql count Master gp_segment_configuration Script Exiti

问题:在初始化过程中,如到以下问题:gpadmin-[FATAL]:-FailedtocompleteobtainpsqlcountMastergp_segment_configuration ScriptExiting!ScripthasleftGreenplumDatabaseinanincomplete...

微信JSSDK javascript 开发 代码片段,仅供参考

最全面最专业的微信公众平台开发教程:http://www.cnblogs.com/txw1958/p/weixin-js-sdk-demo.html比较完整的分享教程:http://www.cnblogs.com/leinov/p/5256879.htmlajax调用服务器接口:functionGetWeiXinJsa...

javascript 工具函数

转义特殊字符为html实体HtmlEncode:function(str){returnstr.replace(/&/g,'&amp;').replace(/"/g,'&quot;').replace(/</g,'&lt;').replace(/>/g,'&gt;')...
首页上一页...119120121122123下一页尾页