1:首先JS是一种弱语言,但是同类型可以自己相加减 例如“a”+”b” 可以自动组成ab : 1+ 2 自动变成3 var data = 2; var currentPage = data; //2 var previousPage = data -1; //1 var nextPage = data +1; //21 2:不同类型的字符 我们先转换例如 “1”+2 : parsInt(“1”)+2 可以实现加法3 var data = 2; var currentPage = data; //…
官网地址:https://github.com/chafey/cornerstone 简介: Cornerstone is an open source project with a goal to deliver a complete web based medical imaging platform. This repository contains the Cornerstone Core component which is a lightweight JavaScript libra…