如何在 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' ? '-' : '+');
}