摘要: 记录一下,空格的转义字符分为如下几种: 1.  &160#;不断行的空白(1个字符宽度) 2.  &8194#;半个空白(1个字符宽度) 3.  &8195#;一个空白(2个字符宽度) 4.  &8201#;窄空白(小于1个字符宽度) 平时一般用的是&nb 阅读全文
posted @ 2019-01-29 09:31 小猪章鱼 阅读(17324) 评论(0) 推荐(0) 编辑
摘要: 对于刚开始不会node写接口和调用接口,可以通过这个清晰的初步了解到整个过程。 1.在node官网https://nodejs.org/en/下载node.js 2.在自己电脑中新建一个文件夹,例如:D:/node 3.在该新建的文件夹中,打开命令行窗口(shift+右击) npminit创建pac 阅读全文
posted @ 2019-01-23 10:20 小猪章鱼 阅读(9496) 评论(0) 推荐(1) 编辑
摘要: var fd = new FormData(); //初始化一个FormData实例 fd.append('patientid', sample.patientId); fd.append('imgType', sample.imgType); for (var i = 0; i < $scope.uploadimgs.length; i++) { ... 阅读全文
posted @ 2019-01-18 15:29 小猪章鱼 阅读(472) 评论(0) 推荐(0) 编辑
摘要: //转换成安全的URL var dataUrl = $sce.trustAsResourceUrl("https://sp0.baidu.com/9_Q4sjW91Qh3otqbppnN2DJv/pae/channel/data/asyncqury?cb=jQuery110204759692032715892_1499865778178&appid=4001&com=&nu=9716105810... 阅读全文
posted @ 2019-01-15 14:04 小猪章鱼 阅读(287) 评论(0) 推荐(0) 编辑
摘要: role="button" 可以将鼠标变成小手 阅读全文
posted @ 2019-01-02 15:45 小猪章鱼 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 一、在元素高度、宽度已知时,实现水平垂直居中就很简单了 二、当元素本身高度不确定时,margin-left:-50%是不行的,此时百分比不是元素本身的一半。也就是说如果百分比是相对自身就可以了,那我们可以使用css3的transform来代替margin: 但transform目前兼容性不好(手机w 阅读全文
posted @ 2018-12-17 11:06 小猪章鱼 阅读(621) 评论(0) 推荐(0) 编辑
摘要: <div ng-if="showInvoice" style="overflow-y: scroll;-webkit-overflow-scrolling:touch;width:100%;height:200px;border: 1px solid #ccc;"> <iframe src="htt 阅读全文
posted @ 2018-12-14 10:00 小猪章鱼 阅读(1739) 评论(0) 推荐(0) 编辑
摘要: HTML1 <st-number-range predicate="balance" lower="balance.lower" higher="balance.higher"></st-number-range> 配置 1 app.directive('stNumberRange', ['$tim 阅读全文
posted @ 2018-12-12 11:06 小猪章鱼 阅读(406) 评论(0) 推荐(0) 编辑
摘要: css .dw-loading { position: absolute; top: 0; left: 0; right: 0; bottom: 0; text-align: center; display: none; } .dw-loading:before { content: ''; display: inlin... 阅读全文
posted @ 2018-12-03 15:03 小猪章鱼 阅读(2159) 评论(0) 推荐(0) 编辑
摘要: ng.module('smart-table').directive('stSearch', ['stConfig', '$timeout', '$parse', function(stConfig, $timeout, $parse) { return { require: '^stTable', link: functi... 阅读全文
posted @ 2018-11-29 15:29 小猪章鱼 阅读(244) 评论(0) 推荐(0) 编辑