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的标题中吗?这是可能的?
<div class="flag brasileña" title="phpcode"></div>
我想用 php 代码或类似代码输入第二类“brasileña”的标题、文本
<?php $className = "flag brasileña"; $alt = explode(" ", $className); ?> <div class='<?php echo $className ?>' title='<?php echo $alt[1] ?>'></div>
假设类名总是有两个词,而 alt 总是取第二个词,因为你提到你想通过 php 来做,所以类名是动态生成的。
这就是你可以做到的方式,但这不会起到任何作用。你想在“alt”中添加第二个单词做什么。