进度条 通过这些简单、灵活的进度条,为当前工作流程或动作提供实时反馈。 基本实例 默认样式的进度条 <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin ...
分类:
其他好文 时间:
2021-07-29 16:17:59
阅读次数:
0
一、栈结构 栈是一种,先进后出,后进先出的数据结构,只有一端能够进行操作,是一种操作受限制的线形表 二、栈的实现 1. 通过数组实现 1 2 3 import java.util.Arrays; 4 5 //栈数组实现 6 public class ArrayStack { 7 //定义一个数组存储 ...
分类:
编程语言 时间:
2021-07-27 17:32:46
阅读次数:
0
<template> <div id="app"> <!-- <img alt="Vue logo" src="./assets/logo.png"> --> <!-- <HelloWorld msg="Welcome to Your Vue.js App"/> --> <!-- <el-uploa ...
分类:
Web程序 时间:
2021-07-19 16:58:35
阅读次数:
0
目前为止的问题的总结 new Button(); 与 Button button = new Button(); 有什么区别 如下的监听事件,frame.addWindowListener(new WindowAdapter()) 中的 new WindowAdapter()具体是什么意思,有什么特 ...
分类:
其他好文 时间:
2021-07-19 16:43:28
阅读次数:
0
json={ "ip"=> "127.0.0.1, "ports"=> '80,135', "data"=>[{"port":22,"item":["22","open","tcp","","ssh"]}] } puts "str:#{ str.to_json}" write_log("nmapre ...
分类:
其他好文 时间:
2021-07-12 18:01:18
阅读次数:
0
当它们一起使用时,一般select长度是默认的,会比input短,只需要设置其宽度是100%即可。 .el-form-item .el-select { width: 100%; } 同理,el-date-picker也是类似的,但有所差别。 给其设置class, <el-date-picker v ...
分类:
其他好文 时间:
2021-07-12 17:46:58
阅读次数:
0
random 顾名思义,就是取 随机数,需要导入random模块。 import random 1、随机获取一个0到1之间的小数(不含首尾) print(random.random()) 2、随机获取一个大于0小于3的小数 print(random.uniform(0,3)) 3、随机获取一个 1到 ...
分类:
编程语言 时间:
2021-07-12 17:46:12
阅读次数:
0
1、 导出单个成员 //导出单个成员,只能导一次,否则报错 export default { foo 'bar' } 2、导出多个成员 //导出多个成员 export const a = 123 export const b = 456 3、加载 //默认加载的是export default 成员 ...
分类:
其他好文 时间:
2021-07-05 19:02:20
阅读次数:
0
<script> var arr = [ { age:11, name:'aa' }, { age:22, name:'bb' }, { age:33, name:'cc' } ] // map 使用 var age = arr.map((item,index)=>{ console.log(ite ...
分类:
其他好文 时间:
2021-07-05 16:37:14
阅读次数:
0
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...