TA的每日心情 | 衰 2014-6-29 17:15 |
|---|
签到天数: 9 天 连续签到: 0 天 [LV.3]偶尔看看II
|
- <html><head><script language="JavaScript">
- function ToggleVisible(targetID, imageID, linkImage, linkImageCollapsed)
- {
- if (document.getElementById){
- target = document.getElementById(targetID);
- if (target.style.display == "none") {
- target.style.display = "";
- } else {
- target.style.display = "none";
- }
- if (linkImageCollapsed != "") {
- image = document.getElementById(imageID);
- if (target.style.display == "none") {
- image.src = linkImageCollapsed;
- } else {
- image.src = linkImage;
- }
- }
- }
- }
- </script></head><body><table width="34" border=1 id="test" cellpadding="0" cellspacing="0" ><tr><td height=20 align=right><a onClick="ToggleVisible('Contents','LinkImage','',''); return false;" href="#"><div width=100% height=20 style="width:697px; height: 24px"><p align="left">一定要点我才能打开!</p></div></a></td></tr><tr id="Contents" style="display:none;"><td><span style="color: rgb(68, 68, 68); font-family: Tahoma, 'Microsoft Yahei', Simsun; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); display: inline !important; float: none;">[flash=1024,576]http://www.66rpg.com/f/173.swf[/flash]</span><br></td></tr></table></body></html>
复制代码 |
|