我编写了一些代码,允许将页面上的一个元素扩展到全屏并收缩回其原始大小。此代码通过保存页面上其他元素的状态、更改它们的属性并恢复它们来工作。此更改必须在回发后继续存在,因此我尝试使用 JSON 和隐藏的输入元素来保留状态更改。
有问题的元素嵌套在多个 IFRAME 中。因此,我必须保存元素所在的文档模型。但是,这会导致 JSON 转换阻塞。我需要一种可以轻松转换为 JSON 并返回的方法来解决此问题。
以下是相关代码:
// e.uniqueID : A unique identifer for the object.
// e.doc: The document model to which the element belongs (so we can find it later).
// e.style: The original style of the element.
function my_preserveElement(gn,elem)
{
if (elem == null) return;
if (elem.style == null) return;
if (elem.id == '') elem.id = PseudoGuid.GetNew();
var e = new Object();
e.uniqueID = elem.id;
e.doc = elem.document;
var cssString;
cssString = elem.style.cssText;
if( typeof(cssString) != 'string' ) { cssString = elem.getAttribute('style'); }
e.style = cssString;
me_aObjectStore[gn][me_aObjectStore[gn].length] = e;
}
function my_restoreElements(gn)
{
for (i = 0; i < me_aObjectStore[gn].length; i++)
{
var e = me_aObjectStore[gn][i];
var elem = e.doc.getElementById(e.uniqueID);
elem.style.cssText = e.style;
elem.setAttribute('style',e.style);
}
me_aObjectStore[gn] = null;
}