jQuery中after的两种用法实例_jquery 程序员文章站 2022-05-06 14:53:26 ... 法一:在每个p元素后插入内容: 复制代码 代码如下: $("button").click(function(){ $("p").after("Hello world!");}); 法二: 复制代码 代码如下: $("button").click(function(){ $("p").after(function(n){ return "The p element above has index " + n + ""; });}); after中函数必须返回一个html字符串。 相关标签: jQuery after 用法 上一篇: xp中搭建php环境安装php并配置 下一篇: 在express中如何使用session与cookie方法(详细教程) 推荐阅读 jQuery中each遍历的三种方法实例分析 jQuery中delegate与on的用法与区别示例介绍 jQuery中事件对象e的事件冒泡用法示例介绍 JQuery中window.onload函数与$(document).ready()的区别实例讲解 jQuery中focus事件用法实例教程 jQuery中的jQuery()方法用法分析 jQuery中remove()方法用法实例教程 jQuery中dequeue()方法用法实例教程 jQuery中mouseover事件用法实例教程 jQuery中change事件用法实例教程