上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 53 下一页
摘要: html语言两端对齐的代码为: 阅读全文
posted @ 2019-06-25 09:47 阿波罗任先生 阅读(10798) 评论(0) 推荐(0) 编辑
摘要: 不同的数据库,相应的字符串拼接方式不同,通过对比加深一下记忆。 一、MySQL字符串拼接 1、CONCAT函数 1.1)连接两个字符串 1.2)连接多个字符串 2、"+"操作符 2.1)连接两个字符串 2.2)连接多个字符串 3、假如其中一个字段为NULL,则用结果用空格代替NULL。 二、Orac 阅读全文
posted @ 2019-06-11 11:09 阿波罗任先生 阅读(132282) 评论(1) 推荐(7) 编辑
摘要: 今天遇到一个需求,在Access数据库中,有个net_id 字段,它的值是由 “jjgrape” 这个字符串和 id 字段组成的,也就是说,要把 ‘jjgrape’ 和 id 字段拼接起来: 那怎么拼接呢? 第一反应是 “ + ”,但结果报错: update qrcode set net_id = 阅读全文
posted @ 2019-06-11 11:08 阿波罗任先生 阅读(1913) 评论(0) 推荐(0) 编辑
摘要: <input name="rememberme" type="checkbox" id="rememberme" onclick="this.value=(this.checked?1:0)" checked="checked" /> 阅读全文
posted @ 2019-06-02 18:57 阿波罗任先生 阅读(473) 评论(0) 推荐(0) 编辑
摘要: div的visibility可以控制div的显示和隐藏,但是隐藏后页面显示空白: style="visibility: none;" document.getElementById("typediv1").style.visibility="hidden";//隐藏 document.getElem 阅读全文
posted @ 2019-06-01 13:03 阿波罗任先生 阅读(29255) 评论(0) 推荐(1) 编辑
摘要: 一种: <a href="javascript:if(confirm('确实要删除该内容吗?'))location='http://www.google.com'">弹出窗口</a> 二种: <script language="JavaScript"> function delete_confirm 阅读全文
posted @ 2019-06-01 09:00 阿波罗任先生 阅读(2766) 评论(0) 推荐(0) 编辑
摘要: @CHARSET "UTF-8"; /** 右下角跳转按钮 跳转到列表 */ #list_note_icon { position: fixed; bottom: 10%; right: 8%; z-index: 888; background: #ff9900; width: 80px; heig 阅读全文
posted @ 2019-05-30 21:12 阿波罗任先生 阅读(2323) 评论(1) 推荐(0) 编辑
摘要: <style> .none{display: none} #toolbar { display: flex; justify-content: center; align-items: center; position: fixed; max-width: 100%; left: 0; /*top: 阅读全文
posted @ 2019-05-30 21:10 阿波罗任先生 阅读(2789) 评论(0) 推荐(0) 编辑
摘要: 1.判断是否包含某某字符函数是:Instr()和InstrRev();2.具体使用如下:ab="abcdefgHTTP"你可以用Instr()或者InstrRev()来判断if Instr(ab, "a")>0 then或if InstrRev(ab, "a")>0 then有else无3.具体代码 阅读全文
posted @ 2019-05-28 21:09 阿波罗任先生 阅读(3855) 评论(0) 推荐(0) 编辑
摘要: UTF-8编码的话:在ASP脚本顶部加入<%@Language="vbscript" Codepage="65001"%>以及再在<head>区域中加入<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >gb2312 阅读全文
posted @ 2019-05-18 18:18 阿波罗任先生 阅读(860) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 53 下一页