doctype打破css更改功能

时间:2014-07-15 08:09:25

标签: php jquery css font-size doctype

我创建了一个生成页面的php文件,如下所示:

{session code}

<!doctype html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Kenshoo Zabbix Console</title>
    <?php
    print $cWeb->getCss($page);
    print $cWeb->getScripts($page,$user);
    ?>

</head>
<body>
...
 <table id="alerts" class="tablesorter" style="width:100%" cellspacing="0" cellpadding="0">
 </table>
...
</body>
</html>

我创建了一个触发以下功能的范围输入:

function adjustFont() {
    $(".tablesorter td").css("font-size", $("#sizeSelector").val());
    $(".tablesorter th").css("font-size", $("#sizeSelector").val());
}

自从我添加了doctype标签后,adjustFont停止工作,删除doctype会返回功能但会破坏css。

知道可能导致此问题的原因是什么?

谢谢!

0 个答案:

没有答案