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