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 或 Backbone 中是否有与Rails 中的content_tag 辅助方法类似的内容?
我想构建一段复杂的 html,我想在客户端运行时生成它。所以我正在寻找优雅的方法来做到这一点。(例如,它绝对不是字符串连接)。
使用 jQuery,您可以:
$('<p />' {text: 'Hello world'}); $('<div />', {text: 'Hello world!', class: 'strong'});
如果你想要稍微复杂一点的东西:
var $container = $('<div />', {class: 'strong'}); $('<p />', {text: 'Hello world'}).appendTo($container);