Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 jQuery 中创建一个事件,每次单击“创建”按钮时添加一个“喜欢”按钮?
目前我只有一个“创建”按钮,每次单击它时,我都希望将一个“喜欢”按钮添加到页面中。
jQuery 有一个 .append() 方法。使用它可以将任何文本或标记添加到 HTML 文档中的元素。使用它来添加必要的标记以在您的页面上创建一个新按钮。
http://api.jquery.com/append/