信息科技共 102 篇
MySQL按年龄段查询
拿其中一句解释一下
sum(case when xingbie='男' and nianling >0 and nianling <30 then 1 else 0 end) as '男30以下',
先看sum的括号里面的部分
case when xingbie='男' and nianling >0 and nianling <30 then 1 else 0 end
它表示的含义是:如果性别为男,并且年龄在0-30岁之间成立为1,不成立为0.
case和end 是一个关键字你可以理解为语句的开始和结束。
when相当于if做判断,then就是判断之后显示的结果。如果成立显示为1,不成立显示为0
sum就是将各个值相加。形如:1+1+0+1+0+1+1+0+1+1
sum(case when xingbie='男' and nianling >0 and nianling <30 then 1 else 0 end) as '男30以下',
先看sum的括号里面的部分
case when xingbie='男' and nianling >0 and nianling <30 then 1 else 0 end
它表示的含义是:如果性别为男,并且年龄在0-30岁之间成立为1,不成立为0.
case和end 是一个关键字你可以理解为语句的开始和结束。
when相当于if做判断,then就是判断之后显示的结果。如果成立显示为1,不成立显示为0
sum就是将各个值相加。形如:1+1+0+1+0+1+1+0+1+1
关于layui.open()如何传递参数
<input class=\"layui-btn layui-btn-primary layui-btn-xs\" onClick=\"jizhang_modify('编辑','edit.php','".$rows[0]."')\" style=\"color: white;width: 34px;background-color: #009688;height: 22px;line-height: 22px;padding: 0 5px;font-size: 12px;\" value=\"编辑\">
jQuery实现table列的隐藏和展示
<html>
<body>
<script language="javascript" src="./jquery.min.js">script>
<script type="text/javascript">
$(document).ready(function(){
$("td:eq(2)",$("tr")).hide();
$("td:eq(3)",$("tr")).hide();
$("td:eq(4)",$("tr")).hide();
$("#button1").click(function(){
以数字形式合计列,如结果为0,将其赋上白色不显示
<table id="mytable" class="layui-table" style="text-align: center;">
//表格要加上 id="mytable"
<tbody>
<tr>
<td>年级</td>
<td>人数</td>
<td>报名费</td>
<td>课本费</td>
<td>作业费</td>
<td>资料费</td>
<td>保险费</td>
<td>小计</td>
</tr>
javascript 两个地方的数做加减乘除运算,保留两位小数,放到第三处
获取表单输入框的值进行运算:
<input type="text" id="txt1" value="123" />
<input type="text" id="txt2" value="123" />
var num1= $("#txt1").val();
var num2 = $("#txt2").val()
var total = num1+num2;
给 title 提示文字加上CSS样式
<script>
var oldTitle = null;
$(document).bind('mouseover mouseout mousemove',function(event)
三元运算符
三元运算符:
(条件) ? (值1) :(值2);
解释:如果条件成立(为真),则执行冒号前边的“值1”,否则执行冒号后面的“值2”。
isset()函数是检测变量是否设置,$_GET['id']是通过get方法传过来的值。
这句话的意思就是:如果$_GET['id']已经被设置,即已经有值了,则$id=$_GET['id'];
如果$_GET['id']没有被设置,则$id = '';
用代码翻译就是:
if( isset($_GET['id']) ){
$id = $_GET['id'];
}else{
$id = '';
}
轻博客程序目录结构
轻博客程序目录结构,帮助大家修改二次开发及模板制作。
│ ├─class 功能目录
│ │ api.php ajax管理操作文件
│ │ codes.php 验证码
│ │ config.php 配置/密码公用函数类
│ │ page.php 分页类
│ │ upload.php 上传类
│ index.php 程序入口文件
├─app 动态文件目录│ ├─class 功能目录
│ │ api.php ajax管理操作文件
│ │ codes.php 验证码
│ │ config.php 配置/密码公用函数类
│ │ page.php 分页类
│ │ upload.php 上传类
无名轻博客修改笔记
一、下载模板样式
<div style="clear: both; border-left: 0pt solid rgb(214, 192, 148); width: 100%;"><div style="background-color: rgb(230, 238, 247); border-bottom: 1px dashed rgb(64, 138, 183) ! important; color: rgb(63, 103, 165); font-weight: bold; padding: 5px;"><i class="fas fa-download">i> 下载文件 div><div style="border-color: -moz-use-text-color rgb(230, 238, 247) rgb(230, 238, 247); border-style: none solid solid; border-width: 0pt 1px 1px; color: #E6EEF7; padding: 10px;"><a target="_blank" href="/assets/file/2020/02/lin1.doc" style="">林继-自我总结.doca>div>div>