设置a标签的属性target,下面对target属性进行描述: 跳转在同一个窗口 1、target="_self", 它使得目标文档载入并显示在相同的框架或者窗口中作为源文档。(此处就是实现你的每次跳转都在同一个窗口的核心点) 跳转在新的窗口 2、target="_blank" ,浏览器总在一个新打 ...
分类:
其他好文 时间:
2021-06-28 20:45:09
阅读次数:
0
Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted order ...
分类:
其他好文 时间:
2021-06-28 20:35:29
阅读次数:
0
FileInputStream和FileOutStream 测试FileInputstream和FileOutpuStream的使用 结论: 对于文本文件(. txt,.java,.c..cpp),使用字符流处理 对于非文本文件( . jpg ,.mp3, . mp4, .avi,.doc.ppt. ...
分类:
编程语言 时间:
2021-06-28 19:37:54
阅读次数:
0
终端输入jupyter notebook --generate-config,回车,会显示jupyter_notebook_config.py文件的完整路径 编辑该文件,搜索#c.NotebookApp.notebook_dir = '',后面引号内修改为自定义的工作空间,注意:工作空间路径中\要替 ...
分类:
其他好文 时间:
2021-06-28 19:24:30
阅读次数:
0
一个对象会有不同的状态,不同的操作会影响状态,同时状态改变,也会影响对象和业务流程。例如,薛定谔的猫有3种状态:生、死、不确定,假设3种状态可转换. 名称为CatState的trait描述了对猫的所有状态操作: trait CatState { fn make_live(self: Box<Self ...
分类:
数据库 时间:
2021-06-28 18:49:22
阅读次数:
0
递归找最小 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # ...
分类:
编程语言 时间:
2021-06-28 18:47:31
阅读次数:
0
VNCR is supported for the cluster. Use MOS note 1914282.1 to ensure you've done all the required steps How to Enable VNCR on RAC Database to Register ...
分类:
数据库 时间:
2021-06-28 17:54:34
阅读次数:
0
逐行入栈,排序后直接输出第k小的数据 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self. ...
分类:
编程语言 时间:
2021-06-25 16:32:21
阅读次数:
0
import timeimport unittestdef my_sum(a, b): a += 1 b += 2 return a + b# 生成测试用例class TestSum(unittest.TestCase): def test_001(self): print(my_sum(1,2)) ...
分类:
其他好文 时间:
2021-06-24 17:47:34
阅读次数:
0
01.STP Configuration Activity 5.2.5: Configuring STP NOTE TO USER: Although you can complete this activity without printed instructions, a PDF version ...
分类:
系统相关 时间:
2021-06-24 17:37:01
阅读次数:
0