js-jQuery 属性操作

2019-08-20  本文已影响0人  AssertDo
                //jquery 设置单个属性
                $("img").attr("title","图片");
                
                //jquery 设置多个属性
                $("img").attr({
                    alt : "名字",
                    title : "标题",
                    custom : "自定义属性"
                });
                
                //jquery 获取属性
                $("img").attr("title");

上一篇下一篇

猜你喜欢

热点阅读