Stones Alice and the List of Presents Labs Alice and the Doll Alice and the Unfair Game A、Stones 题意: 给出三种石头分别$a$,$b$,$c$个,每次拿石头的时候只能拿$1$个第一种石头和$2$个第二种 ...
分类:
其他好文 时间:
2020-07-08 13:08:46
阅读次数:
53
在vue中复制文本 项目中需要实现的功能:展示出来直播地址 超出隐藏,后面有个复制按钮,点击可以复制地址 html代码: <div> <span>{{watch_url }}</span> <div @click="copy(watch_url)" > 复制 </div> </div> JS代码: ...
分类:
其他好文 时间:
2020-07-07 22:14:13
阅读次数:
106
引用NuGet包 OpenHtmlToPdf 1 protected void btnExportPDF_Click(object sender, EventArgs e) 2 { 3 using (WebClient wc = new WebClient()) 4 { 5 wc.Encoding ...
分类:
Web程序 时间:
2020-07-07 15:32:59
阅读次数:
93
1.新建组件mmGoTop.vue ? <template> <div id="goTop"> <div class="goTop" v-show="goTopShow" @click="goTop"> <i class="el-icon-caret-top goTopIcon"></i> </di ...
分类:
其他好文 时间:
2020-07-07 11:35:16
阅读次数:
95
函数描述 ready() 当DOM载入就绪可以查询及操纵时绑定一个要执行的函数。 bind() 为每个匹配元素的特定事件绑定事件处理函数。 one() 为每一个匹配元素的特定事件(像click)绑定一个一次性的事件处理函数。 trigger() 在每一个匹配的元素上触发某类事件。 triggerHa ...
分类:
Web程序 时间:
2020-07-07 09:59:32
阅读次数:
82
// OVRInput.Update(); if (OVRInput.GetUp(OVRInput.Button.Three)) { Debug.Log("remote click"); text.text = "X"; } if (OVRInput.GetUp(OVRInput.Button.Fo ...
分类:
其他好文 时间:
2020-07-07 09:57:32
阅读次数:
175
选择结点: dp[ i ] [ 0 / 1] 树上背包:f[ v ] [ k ] =f[ u ] [ k ]+ val; f [ u ] [ k ]= max( f[v ][k-1],f[u][k]) 常规:f[ i ] [ j ],以i为根的结点。。。 http://acm.hdu.edu.cn/ ...
分类:
其他好文 时间:
2020-07-07 00:06:49
阅读次数:
82
方法一: <?php $arr_click = array( array( 'clicks' => 3, 'clickDate' =>'2010-10-11' ), array( 'clicks' => 2, 'clickDate' =>'2010-10-11' ), array( 'clicks' ...
分类:
编程语言 时间:
2020-07-06 16:33:13
阅读次数:
72
简介 这篇文章主要介绍selenium的多层框架定位。案例是使用selenium自动登陆QQ空间。 思路 1 使用selenium自动请求QQ空间网站 https://i.qq.com/ 。打开后出现如下页面。 2 通过xpath定位到账号密码登录的位置,然后使用click点击对象。出现如下页面。 ...
分类:
其他好文 时间:
2020-07-06 01:00:56
阅读次数:
88
前言 leaflet 入门开发系列环境知识点了解: leaflet api文档介绍,详细介绍 leaflet 每个类的函数以及属性等等 leaflet 在线例子 leaflet 插件,leaflet 的插件库,非常有用 内容概览 leaflet实现简单量算工具功能源代码demo下载 实现借助了一个插 ...
分类:
其他好文 时间:
2020-07-05 23:14:40
阅读次数:
74