首页 > 编程 > JavaScript > 正文

JQuery属性操作与循环用法示例

2019-11-19 11:34:04
字体:
来源:转载
供稿:网友

本文实例讲述了JQuery属性操作与循环用法。分享给大家供大家参考,具体如下:

取出或者设置html内容

var $htm= $("#div").html  取出
$("#div").html("<span>文字</span>")  设置

取出或者设置某个属性的值

var $src=$('#img1').prop('src')  取出
$('#img1').prop({src:'test.jpg',alt:"test Image"}) 设置

设置a标签的属性

跳转到百度的链接

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <title>Title</title>  <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>  <script type="text/javascript">    $(function () {      var $a=$('.link');      console.log($a.prop('class'));/*没有设置的属性要是读的话会读为空*/      $a.prop({href:'http://www.baidu.com',title:'百度'});/*设置属性*/    })  </script></head><body>  <a href="#" rel="external nofollow" class="link">这是一个a标签</a></body></html>

JQuery的循环

对JQuery选择的对象集合分别进行操作,需要用到jquery循环操作,此时可以用到each方法

$(function(){  $('.list li').each(function(i){    $(this).html(i)  })})

得到list类下面的每一个li,赋值加上i。

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <title>Title</title>  <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>  <script type="text/javascript">    $(function () {      var $li=$('.list li');      $li.each(function (index) {        // $(this).css()        if($(this).index()%2==0){          $(this).css({backgroundColor:'gold'});        }      })    })  </script></head><body><ul class="list">  <li>1</li>  <li>2</li>  <li>3</li>  <li>4</li>  <li>5</li>  <li>6</li>  <li>7</li>  <li>8</li></ul></body></html>

各行换色。

感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具 http://tools.VeVB.COm/code/HtmlJsRun 测试上述代码运行效果。

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery常见事件用法与技巧总结》、《jQuery常用插件及用法总结》、《jQuery操作json数据技巧汇总》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结

希望本文所述对大家jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表