本站提倡有节制游戏,合理安排游戏时间,注意劳逸结合。

【网页个人简历源码】【微课堂平台源码】【超级冷门指标源码】jquery index源码

2024-12-29 07:51:30 来源:综合 分类:综合

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

jquery index源码

网页个人简历源码

jquery取得的index()为-1?

网页个人简历源码

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

网页个人简历源码

       $(document).ready(function(){

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

        var _index = k;

网页个人简历源码

        return function(){

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

        $("p").hide();

网页个人简历源码

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

网页个人简历源码

        }

网页个人简历源码

        })(i));

网页个人简历源码

        });

网页个人简历源码

       });

网页个人简历源码

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

网页个人简历源码       éœ€è¦å‡†å¤‡çš„材料分别有:电脑、html编辑器、浏览器。

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

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

网页个人简历源码

       }

网页个人简历源码

       });

网页个人简历源码

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

网页个人简历源码

网页个人简历源码

相关推荐
一周热点