摘要:
设置页面加载时滚动条自动滚到底的方法:jQuery:$(function(){ var h = $(document).height()-$(window).height(); $(document).scrollTop(h);});JavaScript:window.onload = functi... 阅读全文
摘要:
动态创建标记一些传统方法document.writedocument.write()方法可以方便快捷的把字符串插入到文档里。请把以下标记代码保存为一个文件,文件名就用test.html 好了。 Test 如果把test.html 文件加载到Web浏览器里,你将看到内容为“This is ai... 阅读全文