首页课程jQuery Fun ClassModule 2: Properties and Content

Module 2: Properties and Content

目录列表

属性

我们可以通过jQuery轻松地操作分配给HTML元素的属性。

href,src,id,class,style都是HTML属性的例子。

attr()方法用于获取属性的值。

例如:

HTML:

<a href="www.php.cn">
   Click here
</a>

JavaScript:

$(function() {
  var val = $("a").attr("href");
  alert(val);
});
// alerts "www.php.cn"

在上面的代码中,我们选择并提醒了<a>元素的href属性的值。


以下哪些是HTML属性?

属性

attr()方法还允许我们通过将属性值指定为第二个参数来设置一个值。

例如:

$(function() {
  $("a").attr("href", "http://www.jquery.com");
});

这将把<a>元素的href属性更改为提供的值。


填写空白将图像更改为文件“1.jpg”。

("img"). ("src", "1.jpg");