gpt4 book ai didi

php - select with 300+ options 在 Chrome 上丢失样式

转载 作者:行者123 更新时间:2023-11-28 07:27:02 25 4
gpt4 key购买 nike

当你放置一个超过 300 个标签的标签时,chrome 会没有任何样式地显示它。

要重现你必须创建一个 php 文件(或 html 文件)并且有:

<html>
<head>
<style type="text/css">
select.green_select {
color: green;
font-size: 8pt;
}
</style>
</head>
<body>
<h1>SELECT PROBLEM</h1>
<?php
print '<select class="green_select">'."\n";

for ($i = 1; $i < 301; $i++) {
print '<option value="'.$i.'">this should be green '.$i.'</option>'."\n";
}

print '</select>';

print '<select class="green_select">'."\n";

for ($i = 1; $i < 302; $i++) {
print '<option value="'.$i.'">this should be green '.$i.'</option>'."\n";
}

print '</select>';
?>
</body>
</html>

生成的 html 显示第一个选择下拉列表,其中所有选项均为绿色且字体大小正确,而第二个下拉列表删除所有样式。

This select has 300 entries

This select has 301 entries

这只发生在 chrome 上,有人知道解决方法吗?

最佳答案

好吧,这似乎是 chrome 的问题。参见 https://code.google.com/p/chromium/issues/detail?id=513339

我将不得不等待下一个版本的 chrome。问题出在版本 44 上。

太棒了。 :)

关于php - select with 300+ options 在 Chrome 上丢失样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31750150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com