我想知道以下哪个网址最好用:
http://www.website.com/index.php?i=123
http://www.website.com/i123/item-name/
http://www.website.com/item-name/i123/
http://www.website.com/i123-item-name.htm
http://www.website.com/i/123-item-name.htm
Run Code Online (Sandbox Code Playgroud) 任何人都可以告诉我为什么我在firebug 中检查的setTimeout中丢失内容而我正在丢失内容,尽管我的内容高度正在显示!欢迎所有回复!
function Tableslide_down(content,height)
{
var contentID = document.getElementById(content);
if(contentID.offsetHeight < height)
{
contentID.style.top = parseInt(slidingDiv.style.top) + 10 + "px";
setTimeout("Tableslide_down('"+content+"','"+height+"')",10);
}
contentID.style.display = "block";
}
Run Code Online (Sandbox Code Playgroud)