个人资料
xingfushunjian(UID: 2656)
勋章
活跃概况
- 在线时间217 小时
- 注册时间2010-10-30 22:36
- 最后访问2016-7-21 08:14
- 上次活动时间2016-7-21 08:14
- 上次发表时间2016-7-21 08:14
- 所在时区使用系统默认
统计信息
- 已用空间2.71 MB
- 积分5627
- 威望2064
- 团币1079
- 贡献1473
返回顶部
jQuery(document).ready(
function(){
jQuery("#serch_text").keydown(function(e){
if(e.keyCode==13)
auto_submit();
});
});
var default_array_shop = '请输入商家关键词或地址,按回车键完成搜索';
var default_array_web = '请输入团购站的名称,按回车键完成搜索';
var default_array_goods = '请输入您想查找的文章标题或关键词';
function auto_submit(){
var keywords = jQuery("#serch_text").val();
keywords=keywords.replace(/(^\s*)|(\s*$)/g, "");
keywords=keywords.replace(/\s+/g," ");
keywords = keywords.replace(/(^[\s+| +])|([\s+| +]$)/g,"").replace(/\s+| +/g," ");
key = jQuery("#tag0").attr("class");
shop = jQuery("#tag2").attr("class");
website = jQuery("#tag1").attr("class");
i3 = jQuery("#tag3").attr("class");
if(key)
{
jQuery("#index_serch").attr("action", "http://bbs.lingtuan.com/keywords/").submit();
}
if(shop)
{
jQuery("#index_serch").attr("action", "http://www.lingtuan.com/shopkeywords/"+keywords+"/").submit();
}
if(website)
{
jQuery("#index_serch").attr("action", "http://www.lingtuan.com/websitekeywords/"+keywords+"/").submit();
}
if(i3)
{
jQuery("#index_serch").attr("action", "http://www.lingtuan.com/keywords/"+keywords+"/").submit();
}
}
//鼠标滑出隐藏
jQuery("#profile_menu_bbs").mouseleave(function(){
jQuery("#profile_child_menus1").css("display","none");
});
jQuery("#profile_menu_zixun").mouseleave(function(){
jQuery("#profile_child_menus2").css("display","none");
});
//鼠标滑过显示
jQuery("#profile_menu_bbs").mousemove(function(){
jQuery("#profile_child_menus1").css("display","block");
});
jQuery("#profile_menu_zixun").mousemove(function(){
jQuery("#profile_child_menus2").css("display","block");
});