请输入搜索关键词:
DKL01
jQuery搜索框效果
10 2015 档案
tab选项卡效果2
摘要:源码: 实事 政治 体育 实事内容 ... 阅读全文
posted @ 2015-10-16 08:58 DKL01 阅读(197) 评论(0) 推荐(0)
选项卡
摘要:源码: 实事 政治 体育 实事内容 ... 阅读全文
posted @ 2015-10-15 17:42 DKL01 阅读(180) 评论(0) 推荐(0)
文字过多显示隐藏
摘要:样式:#container1{width: 400px; background-color: #eee; margin: 0 auto; padding: 10px 10px;font-size: 14px; text-indent: 2em;}#container1 h3{color: mediu... 阅读全文
posted @ 2015-10-15 16:32 DKL01 阅读(302) 评论(0) 推荐(0)
搜索框效果
摘要:.df{color: gray;}请输入搜索关键词:$(function(){ $('#txtSearch').focus(function(){ if($.trim($(this).val())=='请输入关键字'){ //trim修剪 $(this).val('').removeClass... 阅读全文
posted @ 2015-10-15 15:46 DKL01 阅读(117) 评论(0) 推荐(0)


$(function(){ $('#txtSearch').focus(function(){ if($.trim($(this).val())=='请输入关键字'){ //trim修剪 $(this).val('').removeClass('df'); } }).blur(function(){ if($.trim($(this).val()).length==0){ $(this).val('请输入关键字').addClass('df'); } }); });