0

如何在 Windows Mobile 6 设备上运行的 Pocket Internet Explorer 上隐藏 html 中的元素。即使正确设置值,以下代码也不起作用。

function ShowCollapseElement(sLinkId, sContentId)
    {
    var oLinkElement;
    var oContentElement;

    //Get the elements
    oLinkElement = document.getElementById(sLinkId);
    oContentElement = document.getElementById(sContentId);

    //Toggle the visibility of the content
    oContentElement.style.display = (oContentElement.style.display != 'none' ? 'none' : 'inline');

    //Set the link text
    oLinkElement.innerText = (oContentElement.style.display != 'none' ? '-' : '+');
    }
4

1 回答 1

1

我刚刚发现当元素是 div 时代码有效,但不适用于表格行。我将不得不接受使用 div。

于 2008-09-29T19:08:42.783 回答