最新文章
  • fr-网页调试

    浏览器里,网页打开F12,打开console调试界面,查询网页中id为fr-btn-BTN的元素: document.querySelectorAll("#fr-btn-BTN"); jQuery点击id为fr-btn-BTN的按……

    k, k 2022-10-12
    0 0
  • fr-css

    隐藏单选按钮组前面的小圆点: .radio-content { display: none; }

    k, k 2022-09-29
    0 0
  • html中直接引入vue.js

    html中直接引入vue.js 其中直接vue.js文件可以直接访问下面这个网址,ctrl+s保存到项目文件夹即可, https://cdn.jsdelivr.net/npm/vue/dist/vue.js 若想要本……

    k, k 2022-09-29
    0 0
  • 使用python如何向windows服务器使用ftp传输文件?

    安装python,使用python的一个叫pyftpdlib的库。 安装pyftpdlib库命令: pip install pyftpdlib -i http://pypi.douban.com/simple 使用以下命令创建一个ftp服……

    k, k 2022-09-27
    0 0
  • win桌面远程连接

    win10远程桌面连接报错:出现身份验证错误,要求的函数不受支持(CredSSP) https://blog.csdn.net/qq_32682301/article/details/116003700   如何出现密……

    kukey-admin 2022-09-01
    0 0
  • kettle定时器脚本

    https://blog.csdn.net/huiweizuotiandeni/article/details/54382639 https://www.cnblogs.com/gossip/p/5574929.html https://www.cnblogs.com/wxjnew/p/3620……

    kukey-admin 2022-09-01
    0 0
  • fr-冷知识

    数据集里日期参数必须使用完整的日期格式(最基本完整日期具体到日), 比如 帆软内置数据集里 SELECT * ,strftime('%Y-%m',出生日期) FROM 雇员 where 城市=……

    kukey-admin 2022-08-29
    0 0
  • windows批处理遍历当前目录的文件

    新建txt文件, 把以下代码复制进txt,.txt后缀修改为.bat,双击此文件 @echo off for /f "delims=" %%i in ('dir /s/a-d /b *.*') do echo %%~ni>>Just……

    kukey-admin 2022-08-20
    0 0
  • 快速搭建私人网盘-Cloudreve

    github地址: https://github.com/cloudreve/Cloudreve 简介 Cloudreve是个公有网盘程序,你可以用它快速搭建起自己的网盘服务,公有云/私有云都可。Cloudreve……

    kukey-admin 2022-08-14
    0 0
  • pythonlist遍历

    Python 列表(List) 的三种遍历(序号和值)方法 https://www.cnblogs.com/pizitai/p/6398276.html

    kukey-admin 2022-08-14
    0 0