欢迎来到【Bbp公式源码】【鸿蒙系统源码下载教程】【黄金周指标源码】jquery index源码-皮皮网网站!!!

皮皮网

【Bbp公式源码】【鸿蒙系统源码下载教程】【黄金周指标源码】jquery index源码-皮皮网 扫描左侧二维码访问本站手机端

【Bbp公式源码】【鸿蒙系统源码下载教程】【黄金周指标源码】jquery index源码

2025-01-06 08:47:15 来源:{typename type="name"/} 分类:{typename type="name"/}

1.jquery取得的index()为-1?
2.如何用jquery获得option的索引值index?

jquery index源码

Bbp公式源码

jquery取得的index()为-1?

Bbp公式源码

       æƒ³å¿…楼主做页签功能,修改了一下:

Bbp公式源码

       $(document).ready(function(){

Bbp公式源码

        $("b:first").addClass("active");

Bbp公式源码

        $("p:gt(0)").hide();

Bbp公式源码

        $("b").each(function(i){

Bbp公式源码

        $(this).click((function(k){

Bbp公式源码

        var _index = k;

Bbp公式源码

        return function(){

Bbp公式源码

        $("b.active").removeClass("active");

Bbp公式源码

        $(this).addClass("active");

Bbp公式源码

        $("p").hide();

Bbp公式源码

        $("p:eq(" + _index + ")").show();

Bbp公式源码

        }

Bbp公式源码

        })(i));

Bbp公式源码

        });

Bbp公式源码

       });

Bbp公式源码

如何用jquery获得option的索引值index?

Bbp公式源码       éœ€è¦å‡†å¤‡çš„材料分别有:电脑、html编辑器、浏览器。

Bbp公式源码

       1、首先,打开html编辑器,新建html文件,例如:index.html,并引入jquery。

Bbp公式源码

       2、在index.html中的<script>标签,输入jquery代码:

Bbp公式源码

       $('select option').each(function (i) {

Bbp公式源码

       if ($(this).attr('selected')) {

Bbp公式源码

       $('body').append(i);

Bbp公式源码

       }

Bbp公式源码

       });

Bbp公式源码

       3、浏览器运行index.html页面,此时用jquery获取到了option的索引值被打印了出来。

Bbp公式源码

Bbp公式源码