Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我想在一个 div 中显示许多不同外观的文本时,我尝试创建一个自定义标签。这是为了避免必须为每个文本样式创建一个新的 id。这是你经常做的事情吗?我还注意到它在 Chrome 和 FX 中都能正常工作,但在 IE 中这种风格消失了。有没有办法在 IE 中使用自定义标签?
<script> document.write ("custom tag1"); document.write ("custom tag2"); .... document.write ("custom tagn"); </script>