回答

2

使用jQuery你可以做:

$('<p />' {text: 'Hello world'}); 
$('<div />', {text: 'Hello world!', class: 'strong'}); 

如果你想要的東西稍微複雜一點:

var $container = $('<div />', {class: 'strong'}); 
$('<p />', {text: 'Hello world'}).appendTo($container);