作者: k, k

  • js

    只含async。立即下载,不影响其他操作,等下载完成之后在暂停HTML解析然后执行脚本。(加载完成后会立即执行)

    只含defer,立即下载,但是在Html解析和script加载完之后在执行defer属性标记的脚本。

    https://blog.csdn.net/sinat_41696687/article/details/119719499

    <script src="./1.js" async></script>
    <script src="./1.js" defer></script>

    js点击事件

    function load(){
        //下面两种方法效果是一样的
        document.getElementById("target").onclick();
        document.getElementById("target").click();
    }

    jquery点击事件

    $(function(){
    
      // test 的点击事件
      $("#test").click(function(){
      alert("点击了");
      });
      // 调用 test 的点击事件的两种方法
      $("#test").trigger("click");
      $("#test").click();
    
    });

     

     

     

     

     

  • pycharm 快捷键

    alt按住不送,鼠标点击多出文本,可多处编辑,shift+end可以直接选到当前行末尾

     

     

  • fr-网页调试

    浏览器里,网页打开F12,打开console调试界面,查询网页中id为fr-btn-BTN的元素:

    document.querySelectorAll("#fr-btn-BTN");

    jQuery点击id为fr-btn-BTN的按钮:

    $("#fr-btn-BTN").click();

    jQuery点击id为fr-btn-BTN的按钮后执行操作:

    $("#fr-btn-BTN").click(function(){
    //TODO code
    setTimeout(function(){
      alert("a");
    },1200)
    });

     

     

     

     

  • fr-css

    隐藏单选按钮组前面的小圆点:

    .radio-content {
    display: none;
    }
  • html中直接引入vue.js

    html中直接引入vue.js

    其中直接vue.js文件可以直接访问下面这个网址,ctrl+s保存到项目文件夹即可,

    https://cdn.jsdelivr.net/npm/vue/dist/vue.js

    若想要本地引入,在同级目录下的html文件中使用<script src=“./vue.js”></script>引入即可

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset=“UTF-8”>
        <script src=“./vue.js”></script>
    </head>
     
    <body>
        <div id=“app”>
            {{ msg }}
        </div>
    </body>
    <script>
        var vm = new Vue({
            el: ‘#app’,
            data:{
                msg:‘aaa’,
            }
        })
    </script>
    </html>
  • 使用python如何向windows服务器使用ftp传输文件?

    安装python,使用python的一个叫pyftpdlib的库。

    安装pyftpdlib库命令:

    pip install pyftpdlib i http://pypi.douban.com/simple

    使用以下命令创建一个ftp服务:

    python -m pyftpdlib -i 192.168.0.1 -w -d /tmp/ -u edu -P 666666

    命令说明(命令与参数、参数与参数之间以空格分隔):

    -i  指定ip地址(默认本机可用的ip地址)

    -w 写入权限(默认读)

    -d 共享目录

    -u 指定可登录用户

    -p 端口号

    -P 指定登录密码

    例如

    本机当前的IP地址是192.168.2.234,把D盘当前一个ftp文件夹,用户名和密码都是admin,ftp服务端口号设置为2222:

    python -m pyftpdlib -i 192.168.2.234 -w -d D:\ -u admin -P 123456 -p 2222

    文章来源:https://blog.51cto.com/u_12332766/2174055

  • github-host

    GitHubHoststa
    185.199.108.154 github.githubassets.com
    140.82.112.22 central.github.com
    185.199.108.133 desktop.githubusercontent.com
    185.199.108.153 assets-cdn.github.com
    185.199.108.133 camo.githubusercontent.com
    185.199.108.1 github.map.fastly.net
    199.232.69.194 github. global.ssl.fastly.net
    140.82.113.3 gist.github.com
    140.82.113.5 api.github.com
    185.199.108.133 rawgithubusercontent.com
    185.199.108.133 user-images.githubusercontent.com
    185.199.108.133 favicons.githubusercontent.com
    185.199.108.133 avatars5.githubusercontent.com
    185.199.108.133 avatars4.githubusercontent.com
    185.199.108.133 avatars3.githubusercontent.com
    185.199.108.133 avatars2.githubusercontent.com
    185.199.108.133 avatars2.githubusercontent.com
    185.199.108.133 avatars1.githubusercontent.com
    185.199.108.133 avatars0.githubusercontent.com
    185.199.108.133 avatars.githubusercontent.com
    140.82.112.10 codeload.github.com
    52.217.131.169 github-cloud.s3.amazonaws.com
    52.216.104.43 github-com.s3.amazonaws.com
    52.217.110.196 github-production-release-asset-2e65be.s3.amazonaws.com
    52.217.128.1 github-production-user-asset-6210df.s3.amazonas.com
    52.217.137.41 github-production-repo sitory-file-5claeb.s3.amazonaws.com
    185.199108.133 media.githubusercontent.com

  • 菱形

                    *           (1,4)
                   ***          (2,3)   (2,5)
                  *****         (3,2)   (3,6)
                 *******        (4,1)   (4,7)
                  *****         (5,2)   (6,5)
                   ***          (6,3)   (4,6)
                    *           (7,4)   
    4-1
    3-2
    

     

  • 测试带参数的静态游标

    declare
      cursor c(v_ename varchar2) is select * from emp where ename = v_ename;
      e emp%rowtype;
    begin
      open c('KING'); -- 填写的是谁,最后输出的就是谁的信息
      loop
        fetch c into e;
      exit when c%notfound;
      dbms_output.put_line(e.empno||'  '||e.ename||'  '||e.job||'  '||e.mgr||'  '||e.hiredate||'  '||'  '||e.sal||'  '||'  '||e.comm||'  '||e.deptno);
      end loop;
      close c;
    end;
    

     

  • Oracle数据库局域网远程连接

    D:\app\Administrator\product\11.2.0\dbhome_1\NETWORK\ADMIN

    找到listener.ora文件

    用notepad++打开