在使用jQuery的時候,我們經常會使用append方法向文檔中追加數據。但是在追加完成后,我們有時也需要獲取這些新添加的數據進行操作。那么,我們該如何獲取呢?
//先定義一些變量 var content = "<div>我是新添加的內容</div>"; var $container = $(".container"); //使用append追加數據 $container.append(content); //那么怎么獲取新添加的數據呢?這里有兩種方法: //方法一:使用children方法 var $newContent = $container.children(":last-child"); console.log($newContent.text());//輸出:我是新添加的內容 //方法二:使用find方法 var $newContent = $container.find("div:last"); console.log($newContent.text());//輸出:我是新添加的內容
如果我們想要獲取多個新添加的內容,只需要使用相應的選擇器即可,方法與上面的示例類似。
上一篇css怎么 縮放頁面大小
下一篇jquery還是很有用的