<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>sss</ti ...
分类:
其他好文 时间:
2021-06-02 15:43:35
阅读次数:
0
操作表单 表单本身也是一个DOM树,使用表单的目的就是为了提交信息 获得表单 <form action="post"> <p> <span>用户名:</span> <input type="text" id="username"> </p> <p> <span>性别:</span> <input t ...
分类:
Web程序 时间:
2021-06-02 14:56:51
阅读次数:
0
一.typeof 检测数据类型 关键字:typeof.检测数据类型。 <script type="text/javascript" > console.log(typeof "今天是5/28"); console.log(typeof 12); console.log(typeof Infinity ...
分类:
编程语言 时间:
2021-06-02 14:26:05
阅读次数:
0
1.打开F12,切换到console 2.xpath定位,输入:$x("your_xpath_str") 3.css定位,输入:$$("your_css_str") 4.id,document.getElementById("xx") 5.class,document.getElementByCla ...
分类:
其他好文 时间:
2021-06-02 14:23:20
阅读次数:
0
防抖函数 事件被触发时,在n秒后执行函数,在n秒内多次触发事件,则重新开始计时 利用定时器来实现,在n秒内多次触发,则先清除定时器,从新计时 1 // 定义一个请求函数 2 function request(val) { 3 console.log("request: " + val); 4 } 5 ...
分类:
其他好文 时间:
2021-06-02 13:52:05
阅读次数:
0
1.js判断一个元素是否在数组中 (1).let arr = [1,2,3]; arr.includes(1) // true arr.includes(5) //false (2).a=["1", "3", "2", "3", "0"]; console.log(a.indexOf ('3')); ...
分类:
编程语言 时间:
2021-06-02 13:04:45
阅读次数:
0
// succ.wxml <view style='position:absolute; top:30%; left:35%;font-size:36rpx'>{{name}}:签到成功。{{oaid}}</view> <view>手机型号:{{mobileModel}}</view> <view> ...
分类:
微信 时间:
2021-06-02 11:58:39
阅读次数:
0
//cookie hook (function () { 'use strict'; var cookie_cache = document.cookie; Object.defineProperty(document, 'cookie', { get: function () { console. ...
分类:
Web程序 时间:
2021-06-02 10:33:51
阅读次数:
0
1. 事件起因 事件的起因是这样的,我在使用Django服务的时候,想在一个已经存在某个按钮的主页面上,单击这个按钮弹出某个功能页面,设置某些内容,然后再退回到主页面。 我使用了某个插件,在弹出的页面上显示我请求的链接被服务器拒绝。 在使用浏览器调试的console页面中有如下的提示信息:Refus ...
分类:
其他好文 时间:
2021-05-25 18:19:50
阅读次数:
0
C# 获取GUID using System; namespace GUID测试 { class Program { static void Main(string[] args) { //产生一个新的GUID并输出 Console.WriteLine(System.Guid.NewGuid()); ...