博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
attr 用法
阅读量:5172 次
发布时间:2019-06-13

本文共 1729 字,大约阅读时间需要 5 分钟。

一.  .attr(attributeName)返回String

attributeName 为要获取的值的属性名

值得注意的是这个.attr()方法只获取第一个匹配元素的属性值。要获取每个单独的元素的属性值, 我们需要依靠jQuery的 .each()或者.map()方法做一个循环。

在jQuery 1.6中,当属性没有被设置时候,.attr()方法将返回undefined。另外,.attr()不应该用在普通的对象,数组,窗口(window)或文件(document)上。若要检索和更改DOM属性请使用方法。 the .attr() method returns undefined for attributes that have not been set. In addition, .attr() should not be used on plain objects, arrays, the window, or the document. To retrieve and change DOM properties, use the method.

使用 jQuery的 .attr() 放到得到了一个元素的属性值主要有两个好处:

  1. 方便:它可以被称直接jQuery对象访问和链式调用其他jQuery方法。
  2. 浏览器兼容:一些属性在浏览器和浏览器之间有不一致的命名。 此外,一些属性的值在不同的浏览器中报道也是不一致的(英文原文: the values of some attributes are reported inconsistently across browsers), 甚至在同一个浏览器的不同版本中。 .attr() 方法减少了兼容性问题。

 

在页面的第一个<em>中找到title属性。

View Code
1  2  3  4    6    7  8  9     

10 Once there was a large dinosaur...11

12 13 The title of the emphasis is:
14 17 18

 

二.  .attr( attributeName, value )  返回  jquery

 attributeName 要设置值的属性名  ;value 我这个属性设置的值

.attr( attributeName, function(index, attr) )

attributeName要设置值的属性名

function(index, attr)这个函数返回用来设置的值,this 是当前的元素。接收元素的索引位置和元素旧的样属性值为参数

 设置一个简单的属性

$('#greatphoto').attr('alt', 'Beijing Brush Seller'); 一次设置多个属性
$('#greatphoto').attr({  alt: 'Beijing Brush Seller',  title: 'photo by Kelly Clark'});

警告: 当设置样式名(“class”)属性时,必须使用引号!

注意: Internet Explorer不会允许你改变<input>或者<button>元素的type属性。

例子: 为页面中全部的 <img>设置一些属性。

    	      
Attribute of Ajax

 

Example:使第二个后面的按钮disabled

    	    

 

Example:为页面中的div设置基于位置的id属性。

    	
Zero-th
First
Second

 

Example: 通过图片的title属性设置SRC属性。

  	

 

 

转载于:https://www.cnblogs.com/myhunter/archive/2012/05/08/2489781.html

你可能感兴趣的文章
二叉树(三)
查看>>
linux加密文件系统 fsck 无法修复一例
查看>>
【linux配置】VMware安装Redhat6.5
查看>>
AI自主决策——有限状态机
查看>>
《http权威指南》阅读笔记(二)
查看>>
软件工程
查看>>
http协议
查看>>
js替换问题replace和replaceAll
查看>>
c++11 : range-based for loop
查看>>
中国农历2013,2014 (zz.IS2120@BG57IV3)
查看>>
用virtualenv建立独立虚拟环境 批量导入模块信息
查看>>
Sublime Text3 插件:convertToUTF8
查看>>
BZOJ4060 : [Cerc2012]Word equations
查看>>
hdu2089不要62(数位dp)
查看>>
JAVA输出最大值和最小值
查看>>
64位weblogic11g安装
查看>>
oracle、mysql、sql server等;流行数据库的链接驱动配置
查看>>
UvaLive 6664 Clock Hands
查看>>
PCB 周期计算采用 SQL 函数调用.net Dll 标量函数 实现
查看>>
Problem B: 取石子
查看>>