会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
阿波罗任
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
22
23
24
25
26
27
28
29
30
···
53
下一页
2019年6月25日
html两端对齐的代码
摘要: html语言两端对齐的代码为:
阅读全文
posted @ 2019-06-25 09:47 阿波罗任先生
阅读(10872)
评论(0)
推荐(0)
2019年6月11日
SQL字符串拼接
摘要: 不同的数据库,相应的字符串拼接方式不同,通过对比加深一下记忆。 一、MySQL字符串拼接 1、CONCAT函数 1.1)连接两个字符串 1.2)连接多个字符串 2、"+"操作符 2.1)连接两个字符串 2.2)连接多个字符串 3、假如其中一个字段为NULL,则用结果用空格代替NULL。 二、Orac
阅读全文
posted @ 2019-06-11 11:09 阿波罗任先生
阅读(132650)
评论(1)
推荐(7)
Access 字段拼接(UPDATE 数据追加)
摘要: 今天遇到一个需求,在Access数据库中,有个net_id 字段,它的值是由 “jjgrape” 这个字符串和 id 字段组成的,也就是说,要把 ‘jjgrape’ 和 id 字段拼接起来: 那怎么拼接呢? 第一反应是 “ + ”,但结果报错: update qrcode set net_id =
阅读全文
posted @ 2019-06-11 11:08 阿波罗任先生
阅读(1989)
评论(0)
推荐(0)
2019年6月2日
超级简单的checkbox赋值,用于记住登陆名
摘要: <input name="rememberme" type="checkbox" id="rememberme" onclick="this.value=(this.checked?1:0)" checked="checked" />
阅读全文
posted @ 2019-06-02 18:57 阿波罗任先生
阅读(482)
评论(0)
推荐(0)
2019年6月1日
HTML 显示/隐藏DIV的技巧(visibility与display的差别)
摘要: div的visibility可以控制div的显示和隐藏,但是隐藏后页面显示空白: style="visibility: none;" document.getElementById("typediv1").style.visibility="hidden";//隐藏 document.getElem
阅读全文
posted @ 2019-06-01 13:03 阿波罗任先生
阅读(29269)
评论(0)
推荐(1)
a链接中 JS弹出确认对话框方法
摘要: 一种: <a href="javascript:if(confirm('确实要删除该内容吗?'))location='http://www.google.com'">弹出窗口</a> 二种: <script language="JavaScript"> function delete_confirm
阅读全文
posted @ 2019-06-01 09:00 阿波罗任先生
阅读(2781)
评论(0)
推荐(0)
2019年5月30日
weui 可移动悬浮按钮
摘要: @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 阿波罗任先生
阅读(2348)
评论(1)
推荐(0)
weui 导航悬浮固定
摘要: <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 阿波罗任先生
阅读(2806)
评论(0)
推荐(0)
2019年5月28日
asp程序里,如何判断一个字符串中存在包含了另一个字符串?
摘要: 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 阿波罗任先生
阅读(3876)
评论(0)
推荐(0)
2019年5月18日
asp乱码问题
摘要: 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 阿波罗任先生
阅读(865)
评论(0)
推荐(0)
上一页
1
···
22
23
24
25
26
27
28
29
30
···
53
下一页
公告