去除第一个元素的方法:1、利用“eq(0)”选择器和remove()方法,语法“$("元素").eq(0).remove()”;2、利用“:first”选择器和remove()方法,语法“$("元素:first").remove()”。
本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。
jquery去除第一个元素
方法1:“eq(0)”选择器+remove()方法
利用“eq(0)”选择器获取第一个元素对象
使用remove()方法删除选中的元素
方法2:“:first”选择器和remove()方法
利用“:firs”选择器获取第一个元素对象
使用remove()方法删除选中的元素
相关教程推荐:jQuery视频教程
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!