我正在使用 CEWP (webpart) 并将此代码放在那里。但是这段代码不在<head>
标签内。我需要将此代码插入<head>
标签中,
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$("*").each(function () { if ($(this).children().length == 0) { $(this).text($(this).text().replace('Respuesta','Responder')); } });
</script>
我怎样才能做到这一点?此代码将如何在 CEWP webpart 中工作?