<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>无序列表和有序列表</title> <style type="text/css"> /* 去掉项目符号 */ .ul1 { list-style: none; } </style> ...
分类:
其他好文 时间:
2021-06-30 17:53:22
阅读次数:
0
For example, if an interface is selected when you invoke the Quick Type Hierarchy, the list displays all the known classes that implement the interfac ...
分类:
系统相关 时间:
2021-06-30 17:33:09
阅读次数:
0
乱码问题 测试步骤: 1、我们可以在首页编写一个提交的表单 <form action="/e/t" method="post"> <input type="text" name="name"> <input type="submit"> </form> ? 2、后台编写对应的处理类 @Control ...
分类:
其他好文 时间:
2021-06-30 17:32:30
阅读次数:
0
TypeError: 'generator' object is not subscriptable,错误的原因就是把不具有下标操作对象用了对象[i],所以需要+list转化,加了之后,就不会报错了 ...
分类:
其他好文 时间:
2021-06-29 15:59:51
阅读次数:
0
1.普通函数this指向window; function fn() { console.log('普通函数的this' + this); } window.fn(); 2.对象的方法 this指向调用者O var o={ sayHi:function(){ console.log('对象方法的thi ...
分类:
其他好文 时间:
2021-06-29 15:30:45
阅读次数:
0
1、输出函数print() #print()输出函数的学习 #id() 内存的位置 type() 数据的类型 a = 'c' print(a,id(a),type(a)) #可以输出数值 print(123) print(23.9) #可以输出字符串 print('张三') #可以输出含有运算符的表 ...
分类:
其他好文 时间:
2021-06-29 15:25:59
阅读次数:
0
Nuxt.js实现简单路由配置 本文将实现的路由页面关系: 实现的效果截图: 实现的代码: 首页代码 <!--首页index.vue--> <template> <div> <h1>我是首页-home</h1> <ul> <li><nuxt-link :to="{ name: 'index' }"> ...
分类:
Web程序 时间:
2021-06-29 15:16:23
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:
Web程序 时间:
2021-06-28 21:02:23
阅读次数:
0
设置a标签的属性target,下面对target属性进行描述: 跳转在同一个窗口 1、target="_self", 它使得目标文档载入并显示在相同的框架或者窗口中作为源文档。(此处就是实现你的每次跳转都在同一个窗口的核心点) 跳转在新的窗口 2、target="_blank" ,浏览器总在一个新打 ...
分类:
其他好文 时间:
2021-06-28 20:45:09
阅读次数:
0
一、简介 基于matlab计步 二、源代码 %对原始观测得到的数据进行获取 clc, clear; %加速度数组 accspe_data = []; time_record = []; fid=fopen('sensor_normal.txt', 'r', 'n', 'utf-8'); %初始赋值使 ...
分类:
其他好文 时间:
2021-06-28 20:19:46
阅读次数:
0