摘要:
GNU General Public License 商业软件不能使用GPL协议的代码。 GNU Lesser General Public License 商业软件可以使用,但不能修改LGPL协议的代码。 BSD License 商业软件可以使用,也可以修改使用BSD协议的代码。 MIT Lice 阅读全文
摘要:
var arr = [1000, 3000, 500]; function next() { var d = jQuery.Deferred(), i = 0, doNext = function () { if (i < arr.length) { console.log(arr[i] + "------... 阅读全文