HTML 的全称为:HyperText Mark-up Language, 指的是超文本标记语言。标记:就是标签, <标签名称></标签名称>,比如:<html></html>、<h1></h1>等,标签大多数都是成对出现的。
所谓超文本,有两层含义:
1、因为网页中还可以图片、视频、音频等内容(超越文本限制);
2、它还可以在网页中跳转到另一个网页,与世界各地主机的网页链接(超链接文本);
html实用插件大全
1.操作cookie的插件jquery.cookie.js
添加
$.cookie('the_cookie', 'the_value');
设置时长
$.cookie('the_cookie', 'the_value', { expires: 7 });
设置路径
$.cookie('the_cookie', 'the_value', { expires: 7, path: '/' });
读取
$.cookie('the_cookie'); // cookie存在 => 'the_value'
$.cookie('not_existing'); // cookie不存在 => null
删除
$.cookie('the_cookie', null);
3.将cookie写入文件
var COOKIE_NAME = 'username';
if( $.cookie(COOKIE_NAME) ){
$("#username").val( $.cookie(COOKIE_NAME) );
}
$("#check").click(function(){
if(this.checked){
$.cookie(COOKIE_NAME, $("#username").val() , { path: '/', expires: 10, domain: 'jquery.com', secure: true });
//var date = new Date();
//date.setTime(date.getTime() + (3 * 24 * 60 * 60 * 1000)); //三天后的这个时候过期
//$.cookie(COOKIE_NAME, $("#username").val(), { path: '/', expires: date });
}else{
$.cookie(COOKIE_NAME, null, { path: '/' }); //删除cookie
}
});