码迷,mamicode.com
首页 > 其他好文 > 详细

Shevon‘s Blog

时间:2020-02-01 12:37:47      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:ext   焦点   order   baidu   comment   log   添加   mysql   union   

由于a link是disabled属性设置成true,只是颜色变灰色但是还能提交.要想不能提交,可以删除href属性:
disable link
[html] view plaincopy
function disableLink(link) {
//link.disabled = true;
link.setAttribute(“disabled”,true);
link.removeAttribute(‘href’);
}

role=”presentation”
role是标签扮演的角色属性,更多的是注明作用,对css样式没影响。可能对js事件有影响

:focus 选择器用于选取获得焦点的元素。
提示:接收键盘事件或其他用户输入的元素都允许 :focus 选择器。

a:link {color: #FF0000} / 未访问的链接 /
a:focus {color: #00FF00} / 获得焦点的链接 /

MySQL数据插入、修改、删除

ThinkPhp框架的数据库操作(查询)

ThinkPhp知识大全(非常详细)

进入文件呢,其实是要酱紫进的哦
http://localhost/menu/index.php/Home/Menu
举个栗子

1
2
3
4
5
6
7
8
<ul class="h_nav h_nav-tabs">
<li><h4 style="color:white">hello</h4></li>
<li><a href="">首页</a></li>
<li><a href="/menu/index.php/Home/Menu">菜单</a></li>
<li><a href="/menu/index.php/Home/RoomBook">包间预定</a></li>
<li><a href="/menu/index.php/Home/OnesMenu">菜谱定制</a></li>
<li><a href="/menu/index.php/Home/AboutUs">关于我们</a></li>
</ul>

【数据查询】

sel 大专栏  Shevon‘s Blogect()是数据模型的一个指定方法,可以获得数据表的数据信息

返回一个二维数组信息,当前数据表的全部数据信息

$obj = D(); 创建对象

$obj -> select(); 查询数据

select 字段,字段 from 表名 where 条件 group 字段 having 条件 order 排序 limit 限制条数;

SELECT%DISTINCT%%FIELD%FROM %TABLE%%JOIN%%WHERE%%GROUP%%HAVING%%ORDER%%LIMIT% %UNION%%COMMENT%

$obj ->field(字段,字段); 查询指定字段

$obj ->table(数据表); 设置具体操作数据表

$obj ->where(参数); 参数就是正常sql语句where后边的条件信息

例如:( “goods_price >100 and goods_name like ‘三%’”)

$obj ->group(字段); 根据字段进行分组查询

$obj ->having(参数条件); having 条件设置

$obj ->order(‘price desc/asc’) 排序查询

$obj ->limit([偏移量,]条数) 限制查询的条数

输出表中所有数据
<?php var_dump($umdata); ?>

输出单个数据表的时候注意全部小写

1
2
3
4
<volist name="umdata" id="umvo">
{$umvo.userid}--{$umvo.username}--{$umvo.userpass}--{$umvo.usertelephone}--{$umvo.uservip}--{$umvo.userphotos}
<br/>
</volist>

20170508问题

解决mysql乱码问题
详解mysql中文乱码的问题:[4]phpmyadmin乱码

html5添加表格

1
2
3
4
5
6
<table>
<tr>
<td>Cell A</td>
<td>Cell B</td>
</tr>
</table>

html5+css3登录页面

Shevon‘s Blog

标签:ext   焦点   order   baidu   comment   log   添加   mysql   union   

原文地址:https://www.cnblogs.com/lijianming180/p/12247784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!