我找到了一个用于可折叠文本的 Js 函数。
function toggle(id) {
var e = document.getElementById(id);
if (e.style.display == '')
e.style.display = 'none';
else
e.style.display = '';
}
</script>
这是html:
► Title01 Text01, Text01, Text01, Text01, Text01, Text01, Text01, Text01, Text01,
我想要的是当我点击这个特殊字符时:►
它会改变这个:▲
,有什么线索吗?
提前致谢 !