Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/google-chrome/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 谷歌浏览器bug?在<;th>;_Html_Google Chrome_Cross Browser - Fatal编程技术网

Html 谷歌浏览器bug?在<;th>;

Html 谷歌浏览器bug?在<;th>;,html,google-chrome,cross-browser,Html,Google Chrome,Cross Browser,我有一个表格,其中一个选择框位于包装内的中 是否有人在Google Chrome中遇到过类似的问题,其中选择框在此标记中没有响应 该表有其用途:可能是哪一个造成了干扰?(见附件) 位置 全部展示 国标 [等等] 尝试使用开发人员工具,但审核中未显示JS警告/错误。选择框显示FF Opera IE7/IE8和Opera中的选项。但它在chrome、safari和IE9中失败了。Safari和Chrome正在使用webkit,所以这肯定是浏览器实现问题,或者是tablesorter pluigin

我有一个表格,其中一个选择框位于
包装内的

是否有人在Google Chrome中遇到过类似的问题,其中选择框在此标记中没有响应

该表有其用途:可能是哪一个造成了干扰?(见附件)

位置
全部展示
国标
[等等]

尝试使用开发人员工具,但审核中未显示JS警告/错误。

选择框显示FF Opera IE7/IE8和Opera中的选项。但它在chrome、safari和IE9中失败了。Safari和Chrome正在使用webkit,所以这肯定是浏览器实现问题,或者是tablesorter pluigin的问题。联系插件的创建者查看一下

要解决这个问题,您可以做的是将html更改为在标题中使用td

<td class="header">
   <select name="countryfilter" id="countryfilter">
      <option value="ANY">SHOW ALL</option>
      <option value="GB">GB</option>
   </select>
</td>

你能展示你的代码吗?我测试过了,一切正常。希望这足够了?
<td class="header">
   <select name="countryfilter" id="countryfilter">
      <option value="ANY">SHOW ALL</option>
      <option value="GB">GB</option>
   </select>
</td>
table.tablesorter thead tr th, table.tablesorter tfoot tr th, 
td.header 
{
   background-color: #e6EEEE;
   border: 1px solid #FFF;
   font-size: 8pt;
   padding: 4px;
}