PART Ⅰ : 容器云OPENSHIFT
- 安装
- 数据持久化
- 集群管理
- 数据持久化
- 管理
- 网络
- 安全审计
- 工具应用部署
PART Ⅱ:容器云 KUBERNETES
- 基础
- 原理
- 系统应用/网络CNI/TRaefik
- 安装
- 集群管理
- 用户认证ServiceAccount与授权策略RBAC
- K8S应用管理工具Helm
- 问题
- 辅助工具
- Doing:K8S 多集群管理与网络互联
- VM On K8S
PART Ⅲ:持续集成与持续部署
- CICD优化总结
- Jenkins
- Gitlab
- Drone
- Nexus
- 配置
- 使用OrientDB Console在DB层面修改配置
- [设置SMTP邮件服务](https://www.wenjiangs.com/doc/krrcu7ebin9hh
- 仓库管理
- 数据备份恢复
- API
- Jenkins相关插件
- 配置
- SonarQube静态代码扫描分析
- LDAP
- Apollo
- 项目管理工具
- Jira
- Redmine
- Harbor
- Vault
- Alfred
- Web IDE: VSCode
- DolphinScheduler
PART Ⅴ:日志/监控/告警
- Logging
- Kafka/Zookeeper
- Filebeat
- Metrics
- Tracing
- Sentry日志聚合告警平台
PART Ⅵ:基础
- Docker
- Shell脚本
- Mave
- git
- 正则表达式
- SSL/TLS
- Ceph
- 性能压力测试
- PXE+Kickstart
- netboot.xyz
- Tool
- Windows
- MacOS小技巧
- Linux
- Linux排错优化
- iptables详解
- MySQL
- Redis
- 负载均衡与代理
- 代理服务器
- Nginx
- GitBook
- Telegram机器人
- OpenVPN Server
- iDRAC
- vSphere
- Raspberry Pi树莓派
- 钉钉机器人
- Aliyun CLI
- 音、视频处理工具:fffmpeg
- 图片处理工具:Imagemagick
- PDF处理工具:Ghostscript
- Nvidia
- Virtualbox 虚拟机管理
- 阿里云产品使用总结
- RustDesk:可自建远程控制软件
- Poste:自建邮件服务器
- 使用 Jlink构建最小化依赖的 JRE 环境
- Aria2
- Asuswrt-Merlin
- Trap:Shell脚本信号跟踪
- 零散知识汇总
- BarkServer通知
- Synology
PART Ⅶ:数据存储、处理
PART VIII:CODE
- Python学习笔记
- 基础语法
- statik 将静态资源文件打包到二进制文件中
- HTML/CSS 学习笔记
- JavaScript学习笔记
PART X:HACKINTOSH
PART XI:安全
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
JavaScript 常用工具函数
function getBytesSize(size) {
if (!size) return "";
var num = 1024.00; //byte
if (size < num)
return size + "B";
if (size < Math.pow(num, 2))
return (size / num).toFixed(2) + "KB"; //kb
if (size < Math.pow(num, 3))
return (size / Math.pow(num, 2)).toFixed(2) + "MB"; //M
if (size < Math.pow(num, 4))
return (size / Math.pow(num, 3)).toFixed(2) + "G"; //G
return (size / Math.pow(num, 4)).toFixed(2) + "T"; //T
}
function formatDuring(s){
var days = parseInt(s / ( 60 * 60 * 24));
var hours = parseInt((s % ( 60 * 60 * 24)) / ( 60 * 60));
var minutes = parseInt((s % ( 60 * 60)) / 60);
var seconds = (s % 60) ;
return days + " 天 " + hours + " 小时 " + minutes + " 分钟 ";
}
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.staticfile.org/twitter-bootstrap/5.1.3/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.staticfile.org/twitter-bootstrap/5.1.3/js/bootstrap.min.js"></script>
<style type="text/css">
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
color: white;
}
.modal-content {
background-color: #0d6efd;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 300px;
text-align: center;
}
</style>
<script type="text/javascript">
function copyordernum(value) {
var clipboardInput = document.createElement("input");
clipboardInput.style.position = "absolute";
clipboardInput.style.left = "-9999px";
clipboardInput.style.top = "-9999px";
clipboardInput.value = value;
document.body.appendChild(clipboardInput);
clipboardInput.select();
document.execCommand("copy");
document.body.removeChild(clipboardInput);
var modalMessage = document.getElementById("modalMessage");
modalMessage.textContent = "已复制到剪贴板: " + value;
var modal = document.getElementById("myModal");
modal.style.display = "block";
setTimeout(function () {
modal.style.display = "none";
}, 900);
}
</script>
</head>
<body>
<div id="his" class="container tab-pane active">
<section id="hissection" class="container py-2">
<table class="table table-hover table-bordered" id="histable">
<thead>
<tr>
<th>ID</th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
</tr>
</thead>
<tbody id="histablebody">
<tr id="11111232131231211">
<td>1</td>
<td class="hide-string" data-value="11111232131231211" onclick="copyordernum('11111232131231211')">
1111***1211</td>
<td>111</td>
<td>2021-06-03 10:01:15</td>
<td>111</td>
</tr>
</tbody>
</table>
</section>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<p id="modalMessage"></p>
</div>
</div>
</body>
</html>
方案:使用 BS5 的 CSS伪元素。
JS在生成表格元素时,将标签的 class 设置为
class="hide-string"
;将原字符串赋予标签的 data-vaule属性;标签值则赋予隐藏字符。JS 替换字符串前 4 位和后 4 位中间的字符为:`str.replace(/(^\d{4})(.)(\d{4}$)/, "$1*$3");`
<!DOCTYPE html>
<html>
<head>
<link href="https://cdn.staticfile.org/twitter-bootstrap/5.1.3/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.staticfile.org/twitter-bootstrap/5.1.3/js/bootstrap.min.js"></script>
<style type="text/css">
.hide-string {
position: relative;
}
.hide-string::after {
content: attr(data-value);
position: absolute;
top: 0;
left: 0;
visibility: hidden;
opacity: 0;
background-color: #cccccc;
padding: 5px;
border: 1px solid #cccccc;
}
.hide-string:hover::after {
visibility: visible;
opacity: 1;
}
</style>
</head>
<body>
<div id="his" class="container tab-pane active">
<section id="hissection" class="container py-2">
<table class="table table-hover table-bordered" id="histable">
<thead>
<tr>
<th>ID</th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
</tr>
</thead>
<tbody id="histablebody">
<tr id="11111232131231211">
<td>1</td>
<td class="hide-string" data-value="11111232131231211" >
1111***1211</td>
<td>111</td>
<td>2021-06-03 10:01:15</td>
<td>111</td>
</tr>
</tbody>
</table>
</section>
</div>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论