语法 window.open(URL,name,specs,replace) 参数说明 URL 可选。打开指定的页面的URL。如果没有指定URL,打开一个新的空白窗口 name 可选。指定target属性或窗口的名称。支持以下值: _blank - URL加载到一个新的窗口。这是默认 _parent ...
HTML 基本框架 <!doctype html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <body> </body> </html> iframe内联框架 <iframe src ...
分类:
编程语言 时间:
2021-02-10 12:56:07
阅读次数:
0
在config.xml下添加: <platform name="ios"> <config-file parent="NSCameraUsageDescription" target="*-Info.plist"> <string>需要访问您的相机</string> </config-file> < ...
分类:
移动开发 时间:
2021-02-09 11:54:35
阅读次数:
0
#ifndef MYPUSHBUTTON_H #define MYPUSHBUTTON_H #include <QPushButton> class MyPushButton : public QPushButton { Q_OBJECT public: explicit MyPushButton( ...
分类:
其他好文 时间:
2021-02-06 12:12:31
阅读次数:
0
在 Spring Tools 4 for Eclipse 中依次选择 File->New->Maven Project 完了上述操作之后,在 pom.xml 中添加 Spring Boot 的依赖,代码如下所示。 <parent> <groupId>org.springframework.boot< ...
分类:
编程语言 时间:
2021-02-06 11:43:13
阅读次数:
0
实现效果 这里文字右对齐 使用 <el-form ref="dialog_form" :model="dialog_form" :label-position="labelPosition" label-width="120px"> 这里要注意 声明的 label-position 后要再声明 la ...
分类:
其他好文 时间:
2021-02-05 11:00:05
阅读次数:
0
element-ui 使用中出现莫名黑色边框,如el-tabs、el-popover等 原因: outline样式导致 解决方案:(在对应的容器上加如下样式) .without-outline:focus { outline: none; } 或者覆盖样式: (不推荐,以tabs为例) .el-ta ...
分类:
其他好文 时间:
2021-02-05 10:46:03
阅读次数:
0
mos 提供的用于通过dataguard 滚动升级数据库的脚本 步骤不列举了,主要谈一下重要的地方:开始前,需要确认主备库能够正常Switchover,主备同步正常。备库是先升级的,可以在安装11.2.0.4时选择“升级existing database”,在提示监听器时可选择Typical配置,然 ...
分类:
数据库 时间:
2021-02-05 10:40:53
阅读次数:
0
数据导出 首先是给一个导出的按钮事件 <el-button type="primary" @click="clickExport">导出</el-button> 表格给一个复选框进行当前的导出 <el-table :data="tableData" style="width: 100%" @sele ...
分类:
其他好文 时间:
2021-02-05 10:38:33
阅读次数:
0
仅供自己学习 题目: You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the foll ...
分类:
其他好文 时间:
2021-02-04 12:10:58
阅读次数:
0