摘要: 再来认真的学习一下责任链模式: 示例: /** * 责任链模式 */ var order500 = function (orderType, isPaid, stock) { if (orderType 1 && isPaid true) { console.log('500元定金预购,得到100优 阅读全文
posted @ 2018-12-07 17:52 hh9515 阅读(231) 评论(0) 推荐(0)
摘要: //复制到剪贴板 clipboard(val) { let result = 0; let textArea = document.createElement('textArea'); textArea.value = val; document.body.appendChild(textArea) 阅读全文
posted @ 2018-12-07 03:40 hh9515 阅读(122) 评论(0) 推荐(0)