JQuery没有看到div

时间:2015-01-12 08:46:22

标签: javascript jquery

html代码页的一部分:

<td class="calendar-footer-cell" style="min-width: 135px; max-width: 135px;">
    <table id="in_out_time" style="cursor: pointer; color:#BBBBBB; font-family: cbuc-icons Regular, cbuc-icons;">
        <tbody>
            <tr class="field-label">
                <td id="timeIdName" style="width: 100px; white-space: nowrap; padding-right: 5px; height: 20px">09:52</td>
                <td class="table_td_all_time" style="width: 100px; text-align: right;">04:08</td>
            </tr>
            <tr class="field-label">
                <td class="table_time_in_out" style="width: 100px; height: 20px;">09:52</td>
            </tr>
        </tbody>
    </table>
</td>

CSS:

#timeIdName {
    white-space: normal;
}

在css-settings中的“timeIdName”块中,您要将“white-space”更改为“pre”。

如果您正在使用:

$('#timeIdName').css("white-space", "pre");

没有任何改变。

您能告诉我们如何更改设置吗?

3 个答案:

答案 0 :(得分:1)

纠正您的拼写错误并使用文档准备就绪,它应该有效:

$(function(){
    $('#timeIdName').css("white-space", "pre");
});

我们应该在触发文档就绪事件后选择任何元素。以上是简写:

$(document).ready(function(){
     $('#timeIdName').css("white-space", "pre");
});

答案 1 :(得分:0)

Wirte在文档就绪事件中跟随代码,它应该可以工作。

$(document).ready(function(){
    $("#timeIdName").css("white-space", "pre");
});

答案 2 :(得分:0)

请仔细检查您的代码,您没有正确使用引号...

$('#timeIdName').css("white-space", "pre");

请注意选择器中的单引号。