Mysql update 一个表中自己的数据
摘要:update table ucf, table t2 set ucf.pcid = t2.pcid where t2.name = 'liming' and t2.gid= ucf.gid and ucf.id in(474,475,479,482,457,375,461,406,373,374);
阅读全文
form 表单排序
摘要:<html> <head></head> <body> <form class="form-inline"> <div> <fieldset> <label for="attention">Set Tag Status: </label> <input type="radio" name=
阅读全文
jquery parents用法
摘要:之前一直用find 现在用parents var w =
("div");w=("div").parents('.class'); //在Parents中找我们需要的dom节点 var f = 'span'; var pFindSize = w.find(f).size(); if(pFi
阅读全文
兼容当前五大浏览器的渐变颜色背景gradient的写法
摘要:<style type="text/css" media="screen"> #gradient { width: 200px; height: 200px; /* 如果浏览器不支持渐变,使用图像作为背景 */ background: url(gradient.jpg); /* Webkit: Sa
阅读全文
Electron Browser加载iframe(webview src属性)
摘要:browser或者webcontents 的高度与宽度比例对webview中src的页面结构也是有一定影响的
阅读全文
General error 2006 MySQL server has gone away
摘要:写入配置文件的办法: max_allowed_packet = 16M //但是这种有时候不支持,1024*1024*16这种有的也不支持 max_allowed_packet = 16777216 //是1024*1024*16,写成最后乘积的,100%支持 命令:临时: show global
阅读全文
drupal 用法小结,drupal select ,query ,distinct
摘要:https://api.drupal.org/api/drupal/includes%21actions.inc/function/actions_do/7.x addFileds : 这个更全点: https://www.drupal.org/docs/7/api/database-api/dat
阅读全文