gpt4 book ai didi

Javascript:切片和子字符串未按预期工作

转载 作者:行者123 更新时间:2023-11-28 11:35:04 26 4
gpt4 key购买 nike

我希望从第二个位置给我 4 个字符。但没有。

<body id = "A">
<script>
var s = document.getElementById("A");
var d = "Hello, world";
s.innerHTML = d.substring(2,4);
</script>

它在以下情况下工作:

d.substring(0,4);

最佳答案

substring 的参数是开始和结束,而不是开始和长度。

string.substring(start,end)
Parameter Values
Parameter Description
start Required. The position where to start the extraction. First character is at index 0
end Optional. The position (up to, but not including) where to end the extraction. If omitted, it extracts the rest of the string

有一个加法函数 substr,其参数为 start 和 length

string.substr(start,length)
Parameter Values
Parameter Description
start Required. The position where to start the extraction. First character is at index 0
length Optional. The number of characters to extract. If omitted, it extracts the rest of the string

您可以see more at "W3Schools" here ..您可能会发现这对您遇到的其他问题很有用的引用。

关于Javascript:切片和子字符串未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23871029/

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