如何将 innerHTML 转换为可以使用 .size() 函数的数组。 ETC
我想将一个innerHTML放入一个数组中,从那里我可以访问它的大小和其中的每个字符。 (每个字符在数组中占据 1 个位置)。
例如,
<script type=text/javascript>
var tester=document.getElementById("mydiv").innerHTML;
//testerArray = conversion function goes here? <<<<<
alert (testerArray.size());
alert (testerArray[2]);
</script>
感谢帮助!谢谢!!
I would like to put an innerHTML I got into an array, from there I can access its size and each character in it. (Each character takes 1 slot in the array).
For example
<script type=text/javascript>
var tester=document.getElementById("mydiv").innerHTML;
//testerArray = conversion function goes here? <<<<<
alert (testerArray.size());
alert (testerArray[2]);
</script>
Help is appreciated! Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
testerArray = [].slice.call( tester );
不过,数组没有
.size()
,您已经可以使用.length
对于字符串。如果您确实需要数组函数,那么这是可以的testerArray = [].slice.call( tester );
there is no
.size()
for arrays though and you could already use.length
for the string. If you actually need array functions, then this is ok.length
已经对字符串执行了此操作。.length
already does this for strings.怎么样
how about