prompt

JavaScript 弹窗类的实现

∥☆過路亽.° 提交于 2020-02-13 17:07:18
JS的打印输出是由 doucument.write();实现的 document.write( )内可以书写变量 ,文字 文字需要加""。 JS有两种方式插入到html的页面中 1:<script> 编写JS代码 <script> 这个标签放在<head>和<body>两个标签内部都可以 放在<body>标签可能影响<body>标签内部的html 的内容,可是由于代码执行时自上而下的 如果把JS代码放在<head>内部加载较慢 需要等到JS代码完全加载完毕才可以加载下面的<body>导致页面在JS加载出来之前是空白的 2:编写一个JS文件(例 01JS.js) 通过<script src=01JS.js><script>实现JS代码的引入。 JS的变量是由var关键字来实现的 例: var i=10; 可以定义数字 数组 字符串等 都是由var来声明的 变量要先声明再赋值,JS中函数的声明是由function+函数名来实现的。 function mywin(){ JS代码 } 函数的作用是如果某个操作需要这段代码直接引用函数名就可以实现这段代码了。 alert警告 是个弹出的小窗口 如果不点击确定则无法进行其他操作 如果有两个或者多个alert则按顺序弹出,alert()内可以是数字 变量 文字(加上""),在弹出窗口时显示的就是alert内部的东西。 confirm同样是是弹窗

mysql自定义命令行提示prompt

旧时模样 提交于 2020-02-12 12:20:35
官方资料入口   在《MySQL 5.7 Reference Manual》的如下章节可以看到自定义命令提示的描述:    https://dev.mysql.com/doc/refman/5.7/en/mysql-commands.html   MySQL 5.7 Reference Manual -->Chapter 4 MySQL Programs -->4.5 Client Programs -->4.5.1 mysql — The MySQL Command-Line Client -->4.5.1.2 mysql Client Commands PROMPT自定义实践   官方给出有4种方式可以实现命令行自定义。   1、调整系统环境变量,使用MYSQL_PS1   [mysql@zsdb script]$ export MYSQL_PS1="(\u@\h) [\d]> " <=======MYSQL_PS1 [mysql@zsdb script]$ ./m3306.sh 。。。。。。。 Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. (root@localhost) [(none)]> use mysql Reading table information

Windows10下安装Anaconda3全过程及使用

孤人 提交于 2020-02-11 06:40:54
1.下载Anaconda3 可以从Anaconda的 官网 上进行下载: 但是由于官网是国外的服务器,下载速度会很慢,推荐通过 清华镜像站 来下载Anaconda3: 这里我们选择已有的最新版本,注意系统的位数(我的是64位): 点击下载。最终得到安装软件: 2.安装 双击安装软件: 建议安装在其他盘,而且如果安装的位置位于根目录下的文件夹中,可能会弹出一个对话框: 意思是“如果安装在这种位置,会导致一些Conda包出现问题”,所以建议按照在根目录中(例:D:/anaconda3/) 这个是推荐安装pycharm的广告,可以不用管它 安装成功! 3.一些Anaconda用法 ①Anaconda Navigator的使用 在Windows菜单栏中找到Anaconda Navigator (anaconda3),点击: 打开后点击左侧的“Environments”是如下界面: 可以通过该可视化界面实现建立子环境,在子环境中下载安装包等。 ⑴建立子环境 点击“Create”: 弹出窗口: 最后点击“Create”按钮即可。 ⑵在子环境中安装包(以安装pandas包为例) 点击已经创建好的子环境(我这里子环境命名为tensorflow): 这里子环境中已经有一些包,例如创建时选择的python3.5。然后安装pandas: 出现窗口,点击应用: 安装成功: 注意 :我在用Anaconda

dlib安装踩过的坑

廉价感情. 提交于 2020-02-07 15:13:46
使用到dlib时遇到了下载错误,不能正常安装 以下是成功安装的记录: 首先打开Anaconda prompt选定一个python环境,安装cmake和boost pip install cmake -i https://pypi.tuna.tsinghua.edu.cn/simple pip install boost -i https://pypi.tuna.tsinghua.edu.cn/simple 下载dlib的源文件 解压文件后如图所示: 在Anaconda prompt中进入到dlib的目录 执行以下命令: pyhton setup.py install 如图: 我用的python376是我根据我不同版本python自定义的python命令名,如果没有修改过一般使用python setup.py install即可。 稍等一段时间后就安装成功了。 回到代码中(注意,重启下编译工具),可以看到import dlib已经不报错了。 但是问题还没有结束,运行代码后报错:** AttributeError: module 'dlib' has no attribute 'get_frontal_face_detecetor' ** 这时我们需要打开Anaconda prompt激活openCV环境,在Anaconda prompt中执行: conda install -c

一个没有暂停和复位功能的计时器

独自空忆成欢 提交于 2020-02-05 10:02:46
import time import datetime class Timer: def __init__(self): self.prompt = '未开始计时' self.start_time = 0 self.stop_time = 0 self.time_subtraction = 0 def __str__(self): return self.prompt __repr__ = __str__ def __add__(self, other): prompt = "共运行了" result = self.time_subtraction + other.time_subtraction return prompt + str(result) def start_clock(self): self.start_time = time.clock() print('定时器已启动') def stop_clock(self): self.stop_time = time.clock() self._cacle() print('计时器已停止') if not self.start_time: return print('定时器还没开启呢') return print(self.prompt) def _cacle(self): self.time_subtraction =

emacs terminal bash (PS1) prompt duplicated

杀马特。学长 韩版系。学妹 提交于 2020-02-05 06:36:06
问题 This is a bit of a convoluted question, but here goes nothing! I've recently updated my bash prompt to the nice version appearing in the last post of this thread: Bash: custom PS1 with nice working directory path. The relevant bash code (from that thread post) is copied here: # define the awk script using heredoc notation for easy modification MYPSDIR_AWK=$(cat << 'EOF' BEGIN { FS = OFS = "/" } { if (length($0) > 16 && NF > 4) print $1,$2,".." NF-4 "..",$(NF-1),$NF else print $0 } EOF ) # my

Custom Oh My Zsh theme: long prompts disappear / cut off

心已入冬 提交于 2020-02-03 04:19:30
问题 I had a go at making my own Oh My Zsh theme earlier. All is well, except when I type long lines in the prompt (any longer than the line seen below), the line disappears. The line re-appears if I resize the window, however. Is there something in my theme that is causing this to happen? If I type an additional character and then erase one, the cursor appears at the edge of the window. You can view the code for the theme here. Here’s the bit I think we are concerned with: # Build the prompt

RNN & LSTM 学习笔记 —— Anaconda安装,Python安装,PyTorch,Tensorflow配置

寵の児 提交于 2020-01-27 01:38:03
学习(配置基础环境,下载开发IDE) 配置环境 Anaconda:官网下载 https://www.anaconda.com/distribution/ (python 2+ 官方停止更新了,所以还是下载python 3+的吧) Anaconda下载安装好了之后,就可以用这个工具来下载其他的工具了,包括python其他版本。 python3.6 or 3.7 Anaconda最新版本是Python37的,但是由于Tensorflow并不支持Python37,除了PyTorch还想以后多学学Tensorflow和其他,所以多配置一步python 3.6。 打开Anaconda Prompt并输入: conda create - n py36 python=3 . 6 anaconda 安装好之后,会多出py36的命令行Prompt。之后安装各种库,要安装到python3.7环境下,就用Prompt(Anaconda3),要安装在python3.6环境下,就用Prompt(py36) 下载好用的pythonIDE ——pycharm 安装和配置如下链接: https://www.runoob.com/w3cnote/pycharm-windows-install.html Tensorflow安装 在对应的Prompt 命令行里面 pip install -- upgrade --

Extjs prompt 显示密码框

陌路散爱 提交于 2020-01-25 02:44:11
Extjs 的 prompt 默认是普通的输入框,我们可以通过获取里面的元素,自己改一下。。呵呵 Ext.Msg.prompt("密码","请输入密码:",function(btn,text){ if(btn == "ok"){ Ext.Msg.alert("ok...","验证密码。。。"); } }); /**设置 输入 框是 密码格式**/ var dlg = Ext.Msg.getDialog(); var t = Ext.get(dlg.body).select('.ext-mb-input'); t.each(function (el) { el.dom.type = "password"; }); /**设置 输入 框是 密码格式**/ 来源: https://www.cnblogs.com/bboy/archive/2011/02/09/1950362.html

Prompt user to enter single, multiple or all values in Oracle Select query

半世苍凉 提交于 2020-01-24 21:09:06
问题 I tried researching this but am a little stuck. I need to prompt a user to enter a value (single, multiple or all) for a report that only takes a "Select" statement from Oracle. For example, user can enter a store# as "07" (single value), "07", "08" (as multiple values ), or a result bringing back all store#'s. I had the following below, but unfortunately it does not work in the program we are using from our company as every prompt field is mandatory in their program so my sql below won't