gpt4 book ai didi

javascript - 如何改变html文本任意部分的样式

转载 作者:行者123 更新时间:2023-12-03 09:51:55 24 4
gpt4 key购买 nike

我想更改任意位置、任意长度的部分文本的样式。例如,我的 html 中有这个

<span id="text">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<span>

给定变量 startlength(可能是我不知道的任何有效值),我应该更改特定文本的颜色。

我怎样才能完成这个任务?

最佳答案

尝试以下代码。它应该有效:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
.Inlinetext{ color:red;}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
function ChangeTextColour(start,end){
var startingHtml = "<span class='Inlinetext'>";
var endingHtml="</span>";
var middleHtml=$("#Inlinetext").html().substring(start, end);
$("#Inlinetext").html($("#Inlinetext").html().substring(0, start)+startingHtml+middleHtml+endingHtml+$("#Inlinetext").html().substring(end));
}
</script>

</head>
<body onload="ChangeTextColour(3,100)">
<span id="Inlinetext">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
</body>
</html>

You just needs to mention starting and ending position of string which will change style sheet. If you wish multiple style sheet, then use in CSS tag.

关于javascript - 如何改变html文本任意部分的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30864605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com