@liayun
2016-05-15T13:37:47.000000Z
字数 625
阅读 1709
知问前端
本文主要总结一下尚未完成的功能,以及屏蔽掉IE6,7等低版本浏览器的支持。
搜索功能,可以使用自动补全UI+按键弹起事件+Ajax查询即可。
这里可以直接设置最热门、推荐、评论最多的提问。
填充一下footer,在index.html页面最后添加如下代码:
<div id="footer">李阿昀的知问 | http://www.zhiwen.com</div>
css样式如下:
#footer {clear: both;padding: 10px;text-align: center;color: #666;}
即在index.html页面中<html>标签上面添加如下代码:
<!--[if lt IE 8]><script>window.location.href="/jquery/error/"</script><![endif]-->
error目录下index.html首页文件的开头添加如下代码:
<!--[if !IE]><!--><script>window.location.href="http://localhost/jquery/"</script><!--<![endif]--><!--[if gte IE 8]><script>window.location.href="http://localhost/jquery/"</script><![endif]-->
