默认情况下是否有办法展开折叠的文本?

Talking aobut this:

something

I would like this to show without the user having to click it. Is it possible?

Not that I am aware of, no.

The only way I know of would be through JavaScript, you could probably run an event that looks for a details tag and adds the attribute ‘open’ to it.

Something like this:

$('details').attr('open','')

Figuring out the right event to fire that on, is a different question.

JavaScript 目前仍然是“最简单”的解决方案吗?