Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/79.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
jquery ui标题文本在IE8&;中不可见;IE 9_Jquery_Html_Jquery Ui_Accordion - Fatal编程技术网

jquery ui标题文本在IE8&;中不可见;IE 9

jquery ui标题文本在IE8&;中不可见;IE 9,jquery,html,jquery-ui,accordion,Jquery,Html,Jquery Ui,Accordion,我已经用三个选项卡创建了jqueryui。 标题文本在除Internet Explorer之外的所有浏览器中都可见。 标题是指云台控制、镜头控制、视频控制 有人能帮忙吗? 以下是相关代码的一部分 HTML: <!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.0 Transitional//EN"> <link href="css/jquery-ui-1.10.0.custom.css" rel="stylesheet">

我已经用三个选项卡创建了jqueryui。 标题文本在除Internet Explorer之外的所有浏览器中都可见。 标题是指云台控制、镜头控制、视频控制

有人能帮忙吗? 以下是相关代码的一部分

HTML:

<!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.0 Transitional//EN">

<link href="css/jquery-ui-1.10.0.custom.css" rel="stylesheet">
        <script src="js/jquery-1.9.0.js"></script>
        <script src="js/jquery.ui.core.js"></script>
        <script src="js/jquery.ui.widget.js"></script>
        <script src="js/jquery.ui.accordion.js"></script>
        <script src="js/jquery-ui-1.10.0.custom.js"></script>  



<div id='accordion' style='width:200px;height:440px'>
    <h3>PTZ Control</h3>
    <table style='width:200px;'>
        <tr>
            <td align='center'>
                <img src='ptz_plain.gif' usemap='#ptzcontrol' border='0' height='100px' width='100px'>
                <map name='ptzcontrol'>
                    <area shape='circle' coords='29,29,10' onmousedown="ptzmove('pelcoptzpanlefttiltup')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='51,19,10' onmousedown="ptzmove('pelcoptztiltup')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='73,29,10' onmousedown="ptzmove('pelcoptzpanrighttiltup')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='83,50,10' onmousedown="ptzmove('pelcoptzpanright')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='74,70,10' onmousedown="ptzmove('pelcoptzpanrighttiltdown')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='51,81,10' onmousedown="ptzmove('pelcoptztiltdown')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='29,70,10' onmousedown="ptzmove('pelcoptzpanlefttiltdown')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='20,49,10' onmousedown="ptzmove('pelcoptzpanleft')" onmouseup="ptzmove('pelcoptzstop')" onmouseout="ptzmove('pelcoptzstop')">
                    <area shape='circle' coords='53,40,25'>
                </map>
                </br>
                <img src='zoomin.gif' width=30 border=0 height=30 alt='+' onmousedown="ptzmove('hawkzoomin')" onmouseup="ptzmove('hawkzoomstop')" onmouseout="ptzmove('hawkzoomstop')">
                <img src='zoomout.gif' width=30 border=0 height=30 alt='-' onmousedown="ptzmove('hawkzoomout')" onmouseup="ptzmove('hawkzoomstop')" onmouseout="ptzmove('hawkzoomstop')">
            </td>
            <td>
                <div id='slider-range-min'></div>
            </td>
        </tr>
        <tr>
            <td align='center' colspan='2'>
                </br>
                <fieldset>
                    <legend>Preset</legend>
                    <select id='preset_list'></select>
                    </br>
                    <button style='width:auto;' type='button' onclick='call_preset()'>Call</button>
                    <button style='width:auto;' type='button' onclick='save_preset()'>Save</button>
                    <button style='width:auto;' type='button' onclick='del_preset()'>Delete</button>
                </fieldset>
            </td>
        </tr>
        <tr>
            <td colspan='2' align='center'>
                </fieldset>
                <fieldset>
                    <legend>Advance Controls</legend>
                    <button style='width:140px;' type='button' onclick="OpenWin('pattern.htm','700','500')">Gaurd Tour</button>
                    </br>
                    <button style='width:140px;' type='button' onclick="dothis('pelcoptzsetzero')">Set Azimuth Zero</button>
                    </br>
                    <button style='width:140px;' type='button' onclick="dothis('pelcoptzflip180')">Flip 180</button>
                    </br>
                    <button style='width:140px;' type='button' onclick="dothis('pelcoptzwiper')">Start Wiper</button>
                </fieldset>
                <td>
        </tr>
    </table>

<h3>Lens Controls</h3>
    <div>
        <table align='center' style='border-spacing: 6px;'>
            <tr>
                <td>Aperture:</td>
                <td>
                    <button type='button' style='width:20px;' onclick="control_aperture('minus')">-</button>
                    <input type='text' style='width:30px;' disabled id='aperture_val'>
                    <button type='button' style='width:20px;' onclick="control_aperture('plus')">+</button>
                </td>
            </tr>
            <tr>
                <td>Focus:</td>
                <td>
                    <button style='width:36px' onclick="control_focus('near')" onmouseup="control_focus('stop')" onmouseout="control_focus('stop')">Near</button>
                    <button style='width:36px' onclick="control_focus('far')" onmouseup="control_focus('stop')" onmouseout="control_focus('stop')">Far</button>
                </td>
            </tr>
            <tr>
                <td>Digital Zoom:</td>
                <td>
                    <input type='checkbox' id='digitalzoom'>
                </td>
            </tr>
            <tr>
                <td>IRIS:</td>
                <td>
                    <div style='width:80px;' id='slider_iris'>
                </td>
            </tr>
            <tr>
                <td>Auto IRIS:</td>
                <td>
                    <input type='checkbox' id='autoiris'>
                </td>
            </tr>
        </table>
        </div>

<h3>Video Controls</h3>
        <div>
            <table align='center' style='border-spacing: 10px;'>
                <tr>
                    <td>Brightness:</td>
                    <td>
                        <div style='width:80px;' id='slider_brightnes'></div>
                    </td>
                </tr>
                <tr>
                    <td>WDR:</td>
                    <td>
                        <input type='checkbox' id='wdr'>
                    </td>
                </tr>
            </table>
        </div>
    </div>

JS :

 $(function() {
                $( "#accordion" ).accordion({
                        collapsible: true,
                        animate: false,
                        active: 0
                });
        });

云台控制


预设
呼叫 拯救 删除 预先控制 高尔德之旅
将方位置零
翻转180度
启动雨刮器 镜头控制 孔径: - + 集中: 近的 远的 数码变焦: 虹膜: 自动虹膜: 视频控制 亮度: WDR: JS: $(函数(){ $(“手风琴”)。手风琴({ 可折叠的:是的, 动画:假, 活动:0 }); });
请共享您的代码和jQuiery usedPlease的版本请将代码片段放在此处。如果不看代码,很难理解问题:请考虑使用小提琴来帮助你更清楚需要帮助的地方。祝你好运通过使用ui轻量级主题css而不是默认css修复了此问题。您没有在第一个表周围放置div(您不应该使用div,因为您的数据不是表格数据)