摘要:
在HTML中要显示的位置设置: [innerHTML]="description" 阅读全文
摘要:
在HTML中: <input type="checkbox" (click)="number($event,item.id)" [checked]="item.choseStatus ==1" id="in{{item.id}}"> <label for="in{{item.id}}"></labe 阅读全文
摘要:
1、 $(document).ready(function() { var menuYloc = $("#offsetTop").offset().top - 350; //此ID为随着屏幕滚动div的ID,这个是获取的距离屏幕顶部的距离 $(window).scroll(function() { 阅读全文
摘要:
<a href="要下载的图片或者附件路径" download="给下载的图片或者附件命名">下载</a> 阅读全文
摘要:
html: <input type="checkbox" (click)="number($event)" class="checked" name="sigle" id="li9"> <label for="li9"></label> js: $(e.target).prop("checked") 阅读全文
摘要:
在HTML中如下: <div *ngIf="flag" (click)="click()"></div> 在ts中如下: export class RemoteindexComponent implements OnInit { constructor() {} flag = false; //设置 阅读全文
摘要:
1、ng new '项目名' 创建项目 2、cd '项目名' 切换到项目文件夹 3、ng serve --open 运行项目并打开 4、ng generate component '组件名' 创建组件 5、ng generate service '服务名' 创建服务 6、ng generate mo 阅读全文
摘要:
使用input:file标签, 去调用系统默认相机,摄像,录音功能,使用capture属性,直接说明需要调用什么功能 <input type="file" accept="image/*" capture="camera"> <input type="file" accept="video/*" c 阅读全文
摘要:
在<body>中加入属性代码: oncontextmenu="return false" 禁止右键点击onselectstart="return false" 禁止选中网页上的内容 oncopy="alert('禁止复制'); return false" 禁止复制网页内容 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文