我在powerapps门户中呈现了以下HTML,我想替换所有出现的
<font size = 3>..... </font>
具有
<div class="legend">... </div>
我尝试了下面的代码片段,但它没有取代它:
var $descBox = $("<font size = 3>"); $descBox.replaceAll("<div class='legend well'>");