1.javascript为我们提供了四种常用的方法: 1)console 控制台打印 2)alert ok框 3)confirm 确定取消框 4)prompt 提示消息框 其中第一种打印,又有5中方法: console.log() 打印日志 console.dir() 打印对象解构(就是控制台中打印 ...
分类:
编程语言 时间:
2020-06-16 23:32:27
阅读次数:
78
详细看网址:https://blog.csdn.net/wrs120/article/details/77509070 压缩包和解压包的存放目录均为/usr/local/src/ 环境变量在/root/.bash_profile (自己添加) 一、安装前准备 1. 安装gcc # 安装命令 yum ...
分类:
数据库 时间:
2020-06-16 23:23:35
阅读次数:
270
在写html表单的时候,发现了一个问题:input和button设置了一样的宽高,但是显示高度确不一致,先看代码: 1 <style> 2 input,button{ 3 width:100px; 4 height: 60px; 5 } 6 </style> 7 <input type="text" ...
分类:
Web程序 时间:
2020-06-16 20:43:12
阅读次数:
115
1.安装:npm install -g create-react-app 2.创建react项目: npx create-react-app (项目名) 3. 远行项目:npm run start/npm start 4.基本用法: import React from 'react'; import ...
分类:
其他好文 时间:
2020-06-16 18:11:47
阅读次数:
63
from selenium import webdriver import logging import time from selenium.common.exceptions import NoSuchElementException, WebDriverException from retry ...
分类:
其他好文 时间:
2020-06-15 21:23:05
阅读次数:
84
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <script src="http://www.jq22.com/jquery/jquery-3.3.1.js ...
分类:
Web程序 时间:
2020-06-15 18:03:37
阅读次数:
131
<template> <div> <div id="container"> <button id="selectfiles" type="primary" class="btn">选择文件</button> <template id="postfile" /> <button type="prima ...
分类:
其他好文 时间:
2020-06-14 20:36:59
阅读次数:
47
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .aclass{ color: red; } .bclass{ color: blue; } .cclass{ fo ...
分类:
其他好文 时间:
2020-06-14 20:29:38
阅读次数:
251
$('#editMark').linkbutton({"disabled":false}); $('#submitSP').linkbutton({"disabled":false}); $('#addMark').linkbutton({"disabled":false}); $('#delete ...
分类:
其他好文 时间:
2020-06-14 15:05:48
阅读次数:
121
JavaScript弹出框 警告框alert (常用于消息提示,比如注册成功等等) <script> function register(){ alert("注册成功"); } </script> <button onclick="register()">注册</button> View Code ...
分类:
编程语言 时间:
2020-06-14 14:59:36
阅读次数:
62