,如果你需要它像
<span>
<figcaption>
Copyright information
</figcaption>
</span>
你可以嘗試的.html()
var $figcaption = '<span>Copyright information</span>';
$($figcaption).html('<figcaption>'+ $($figcaption).text()+'</figcaption>');
,如果你需要它像
<figcaption>
Copyright information
</figcaption>
可以(使用replaceWith ())
var $figcaption = '<span>Copyright information</span>';
$($figcaption).replaceWith('<figcaption>'+ $($figcaption).text()+'</figcaption>');
改變變量
var $figcaption = '<span>Copyright information</span>';
$figcaption = $figcaption.replace(/span/g , 'figcaption');
Demo here
其replaceWith(),而不是ReplaceWith() – DinoMyte
可以告訴你,你是如何調用'replaceWith'的完整的例子? – Stryner
'replaceWith()'是jQuery的API,它jQuery對象的工作不是字符串,對字符串使用'replace' – vinayakj