0

我有一些问题伙计们。我必须用 .html() jquery 函数删除我的内容。一切正常,但我的 iphone phonegap 应用程序的页脚转到上部。但是当我直接在我的 html 代码中评论或删除我的内容时,一切正常,我的应用程序的页脚留在他的位置。请帮我。这是我的代码片段:

<script id="div_mainheader" type="text/html">

        <div id="check_place">
            <div id="idcheckin" style="width: 210px; position: relative;" align="left" class="mystatus2 clickable" onclick='showPartnersNearYouPopUp();'>
                <div id="leave" style="top: 81px;"><img src="graphics/picker.png" style="margin-left: 5px; margin-top: 5px; margin-bottom: -1px;">

                    CHECK A PLACE ...

                </div>
            </div> 

            <div id="idbtleave" style="position: absolute; top: 81px; left: 270px;">
                <button id="btleave" class="checkout-button" type="button">{{Localize.quit}}</button>
            </div>
        </div>

    </script>

这是我调用来删除我的内容的函数:

$('#check_place').html('');

我也尝试过document.getElementById('check_place').innerrHTML = ''; ,但与 .html() 相同

请帮我。非常感谢。

4

1 回答 1

2

利用

$('#check_place').empty();
于 2012-08-22T16:10:31.927 回答