07 2020 档案
摘要:1.select标签去除下拉框里的小箭头 在select样式中加入 -webkit-appearance: none; 2.禁用鼠标右键(js) document.oncontextmenu = function(){ return false; }; 3.当遇到文本太长溢出,不换行问题,可以加样式
阅读全文
摘要:1.cd到/etc/init.d 创建一个uwsgi文件,修改权限 chmod 775 uwsgi 2.编辑该文件 #!/bin/sh ### BEGIN INIT INFO # Provides: nginx # Required-Start: $local_fs $remote_fs $netw
阅读全文