1

所以我是 javascript 文盲,但我确实在网上找到了这个有用的代码:

<script type="text/javascript">
function readCookie( cName )
{
  var v;

  return decodeURIComponent( ( v = ( document.cookie || "" ).match( "(^|\\s)" + cName + "=([^;$]+)" ) ) ? v[ 2 ] : "" );
}

function setCookie( cName, cValue, life, cPath, cDomain, cSecure )
{
 var dt = new Date(), 
     expSecs = ( expSecs = life.toString().match( /\bsecs\s*=\s*(\d+)/i ) ) ? Number( expSecs[ 1 ] ) : 0,
     params = ( life ? ( ";expires=" + new Date( expSecs ? ( dt.setTime( dt.getTime() + expSecs * 1000 ) )                                                          : ( dt.setDate( dt.getDate() + life) ) ).toUTCString() ) : "" )
            + ( cPath ? (";path=" + cPath) : "" )
            + ( cDomain ? ";domain=" + cDomain : "" )
            + ( cSecure ? ";secure" : "" );

 document.cookie = cName + "=" + encodeURIComponent( cValue ) + params;

 return readCookie( cName );
}

if( readCookie( "close" ) )
{
  document.getElementById("thing").style.display="none";
}

function close_thing()
{
  document.getElementById("thing").style.display="none";
  setCookie( "close", "true", 20 );
}
</script>

它适用于这个 div

<div id="thing">
<div id="close_stuff" onclick="close_thing();"><a href="#">Close this</a></div>
</div>

我的问题是,如果我希望我的 div 包含内容,用户可以根据需要关闭这些内容。但是,当我将新内容放入 div 时,我希望 div 重新出现。

有没有办法我可以手动做到这一点?就像将所有“close_thing”重命名为“klose_thing”,还是什么?

谢谢!

4

1 回答 1

1

添加另一个功能将为您执行此操作。将显示属性设置为阻止。

function show_thing()
{
  document.getElementById("thing").style.display="block";
}

然后调用 show_thing 函数再次显示 div。

于 2012-06-14T05:35:03.253 回答