class id 区别

时间:2023-01-10 08:40:11

【1】、id是唯一的,一个元素只能有一个,不能重复class可以重复  

<div>
<img src="" width="100%"/>
<div class="duihao" id="duihao11">
<img id="duihao1" name='A' src="" />
</div>
<div class="duihao" id="duihao22">
<img id="duihao2" name='B' src="" />
</div>
<div class="duihao" id="duihao33">
<img id="duihao3" name='C' src="" />
</div>
<div class="duihao" id="duihao44">
<img id="duihao4" name='D' src="" />
</div>
<div class="duihao" id="duihao55">
<img id="duihao5" name='E' src="" />
</div>
<div class="duihao" id="duihao66">
<img id="duihao6" name='F' src="" />
</div>
</div> <script>
$(function(){
$(".duihao").click(function(){
$(this).children().css("visibility","visible");
var a = $(this).children().attr("name");
setTimeout(function(){
window.location="url?func=cha&pubid={$pubid}&type="+a;
},1000);
});
})
</script>

  

class id 区别的更多相关文章

  1. Android &commat;id和&commat;&plus;id区别

    Android中的组件需要用一个int类型的id属性值来表示.id属性只能接受资源类型的值,也就是必须以@开头的值,例如,@id/abc.@+id/xyz等.如果在@后面使用“+”,表示当修改完某个布 ...

  2. html中NAME和ID区别

    html中NAME和ID区别 NAME 的最大作用就是可以与服务端进行交互.Struts2中要设NAME的属性才能在Action中取到值,ID取不到. id与name的作用,作为标签的标识符,基本上是 ...

  3. CSS中的class与id区别及用法

    转自http://www.divcss5.com/rumen/r3.shtml及http://www.jb51.net/css/35927.html 我们平常在用DIV CSS制作Xhtml网页页面时 ...

  4. Python基础学习Day6 is id &equals;&equals; 区别,代码块,小数据池 ----&gt&semi;&gt&semi;编码

    一.代码块 Python程序是由代码块构造的.块是一个python程序的文本,他是作为一个单元执行的. 代码块:一个模块,一个函数,一个类,一个文件等都是一个代码块. 而作为交互方式输入的每个命令都是 ...

  5. Guid与id区别

    一.产生Guid的方法 1.SqlServer中使用系统自带的NEWID函数: select NEWID() 2.C#中,使用Guid类型的NewGuid方法: Guid gid;           ...

  6. Objective-C中的instancetype和id区别

    目录(?)[-] 有一个相同两个不同相同 Written by Mattt Thompson on Dec 10th 2012 一什么是instancetype 二关联返回类型related resu ...

  7. Android中&commat;id与&commat;&plus;id区别

    Android中的组件需要用一个int类型的值来表示,这个值也就是组件标签中的id属性值. id属性只能接受资源类型的值,也就是必须以@开头的值,例如,@id/abc.@+id/xyz等. 如果在@后 ...

  8. &lpar;转&rpar;Objective-C中的instancetype和id区别

    有一个相同两个不同.相同 Written by Mattt Thompson on Dec 10th, Objective-C is a rapidly evolving language, in a ...

  9. Request&period;QueryString&lpar;&quot&semi;id&quot&semi;)与Request&lpar;&quot&semi;id&quot&semi;&rpar;区别

    Request从几个集合取数据是有顺序的,从前到后的顺序依次是 QueryString,Form,最后是ServerVariables.Request对象按照这样的顺序依次搜索这几个集合中的变量,如果 ...

随机推荐

  1. 浏览器XMLHttpRequest案例

    /* Cross-Browser XMLHttpRequest v1.2 ================================= Emulate Gecko 'XMLHttpRequest ...

  2. javaweb回顾第三篇数据库访问

    前言:本篇主要针对数据库的操作,在这里不适用hibernate或者mybatis,用最原始的JDBC进行讲解,通过了解这些原理以后更容易理解和学习hibernate或mybatis. 1:jdbc的简 ...

  3. 30个惊人的插件来扩展 Twitter Bootstrap

    Bootstrap Maxlength It is a lightweight plugin that allows detecting the HTML maxlength property of ...

  4. 存储过程系列之存储过程sql数据库调用和程序代码调用

    1.存储过程,无参数的存储过程 创建无参数存储存储过程 Create Procedure DCEMREMR_TEMPLATEAs SELECT TOP 10 [FILENAME],[FILETITLE ...

  5. c&num; 请问如何将四个RadioButton分成两组&quest;

    WinForm 只要放在同一个容器中的RadioButton 就自动互斥 创建两个panel容器,分别放两个RadioButton 就是两组了

  6. spring 自定义schema

    扩展schema,定义自己的bean属性..不错! 主要: 1,定义META-INF下.xsd文件,这里是people.xsd;定义spring.handlers;定义spring.schemas 2 ...

  7. 金洪林:红邦创衣止于至善&lowbar;品牌-生活时尚&lowbar;品牌&lowbar;YOKA时尚网

    金洪林:红邦创衣止于至善_品牌-生活时尚_品牌_YOKA时尚网 金洪林:红邦创衣止于至善

  8. &lbrack;转载&rsqb;在termux上安装Kali Linux

    最近在手机上下了个Termux,然后想装个kali,就找到了这篇文章. 不过其中的命令有一处错误(在我进行配置的时候报错了): 命令应该是 ./atilo install kali

  9. Microsoft Artificial Intelligence Conference(2018&period;05&period;21)

    时间:2018.05.21地点:北京嘉丽大酒店

  10. MLE

    独立同分布的采样x1,x2,…,xn,θ为模型参数,f为我们所使用的模型.参数为θ的模型f产生上述采样可表示为 f(x1,x2,…,xn|θ)=πf(xi|θ) 已知的为x1,x2,…,xn,未知为θ ...