花千骨游戏是不是到40级没充钱就不能玩了,一直提示包裹已满,需传奇清理包裹

后使用我的收藏没有帐号?
提示:使用畅玩APP最新礼包实时提醒!快人一步!
扫一扫领礼包
使用方法:
1.扫描二维码下载畅玩APP2.选择关注游戏,最新礼包实时提醒领取
安卓用户专享,iOS用户敬请期待
劲舞团正版手游 音舞游戏次世代降临!
极致的音舞享受 分享手游穿搭赢好礼!// JavaScript Document
function showNav(down_id, id, cls) {
document.getElementById(id).className
document.getElementById(down_id).style.display = "";
function hideNav(down_id, id, cls) {
document.getElementById(id).className
document.getElementById(down_id).style.display = "none";
function addfavorite() {
= location.
var title = document.
if (window.sidebar) { // Mozilla Firefox
window.sidebar.addPanel(title, url, "");
} else if (window.external && ! window.chrome) { // IE
window.external.AddFavorite(url, title);
} else if (window.opera && window.print) {
window.external.AddFavorite(url, title);
alert("加入收藏失败,请使用Ctrl+D进行添加");
function setHomePage() {
var url = '';
if (document.all) {
document.body.style.behavior = 'url(#default#homepage)';
document.body.setHomePage(url);
else if (window.sidebar) {
if (window.netscape) {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
catch (e) {
alert("该操作被浏览器拒绝,如果想启用该功能,请在地址栏内输入 about:config,然后将项 signed.applets.codebase_principal_support 值该为true");
var prefs = Components.classes['@mozilla.org/preferences-1'].getService(Components.interfaces.nsIPrefBranch);
prefs.setCharPref('browser.startup.homepage', url);
alert("您的浏览器不支持自动设置首页, 请使用浏览器菜单手动设置!");
游戏鹰欢迎您!
html += '';
$('#_allgames_list').html(html);
function searchGameByTag(tag) {
var srGame = [];
for (var i = 0; i < gameL i ++) {
if (gameJsons[i]['tag'] == tag) {
srGame.push(gameJsons[i]);
return srG
function searchGameByLetter(letter) {
var srGame = [];
for (var i = 0; i < gameL i ++) {
if (gameJsons[i]['ucfirst'] == letter) {
srGame.push(gameJsons[i]);
return srG
function searchGameByType(type) {
var srGame = [];
for (var i = 0; i < gameL i ++) {
//alert('aaa'+gameJsons[i]['type']);
if (gameJsons[i]['type'] == type) {
srGame.push(gameJsons[i]);
return srG
function searchGameByOrd() {
return gameJ
$(function () {
var firstKey =
$('#search-field').focus(function () {
if ($('#search-field').val() == '输入您要找的游戏') {
$('#search-field').val('');
$('#search-field').blur(function () {
setTimeout(function () {
$('#search-result').hide();
$('#search-result').find('a').bind('click', function (event) {
if ($(this).attr('id') != 'search-result-none') {
isNeedRendFocus =
selectGame($(this));
event.preventDefault();
$(document).keydown(function (e) {
if (startIndex < 1) {
curFocusItem = selRes[curFocusIndex];
if (e.keyCode == 40 || e.keyCode == 39) {
if (curFocusIndex == startIndex - 1) {
curFocusIndex = 0;
curFocusIndex ++;
curFocusItem.removeClass('focus');
selRes[curFocusIndex].addClass('focus');
curFocusItem = selRes[curFocusIndex];
} else if (e.keyCode == 38 || e.keyCode == 37) {
if (curFocusIndex == 0) {
curFocusIndex = startIndex - 1;
curFocusIndex --;
curFocusItem.removeClass('focus');
selRes[curFocusIndex].addClass('focus');
curFocusItem = selRes[curFocusIndex];
if (e.keyCode == 13) {
isNeedRendFocus =
selectGame(selRes[curFocusIndex]);
$('#search-field').keyup(function (e) {
var searchText = $('#search-field').val();
if (searchText != initFieldValue) {
initFieldValue = searchT
startIndex
curFocusIndex
curFocusItem
if (! isNeedRendFocus) {
if (searchText.length < 1) {
if (! firstKey) {
showGamesByType(0);
$('#search-result').css("display", 'none');
firstKey =
//搜索重组
$('#search-result').find('a').each(function () {
var curData = $(this).attr('data');
if (curData.indexOf(searchText) !== - 1) {
if (startIndex == 0) {
$(this).addClass('focus');
$(this).removeClass('focus');
if (startIndex % 2 == 0) {
$(this).addClass('o');
$(this).removeClass('o');
$(this).css("display", 'block');
startIndex ++;
$('#search-result').css("display", 'block');
selRes.push($(this));
$(this).removeClass('focus o').css("display", 'none');
if (startIndex < 1) {
$('#search-result-none').css("display", 'block');
/*****************************************************
Share JavaScript ()
* 使用此脚本程序,请保留此声明
* 获取此脚本以及更多的JavaScript程序,请访问
******************************************************/
//添加事件响应函数的函数,与本效果无关
function addEventSimple(obj, evt, fn) {
if (obj.addEventListener) {
obj.addEventListener(evt, fn, false);
} else if (obj.attachEvent) {
obj.attachEvent('on' + evt, fn);
addEventSimple(window, 'load', initScrolling);
//保存想要滚动的容器
var scrollingB
var scrollingI
//用于记录是否“滚到头”过一次
var reachedBottom =
//记录第一次滚到头时候的scrollTop
//初始化滚动效果
function initScrolling() {
scrollingBox
= document.getElementById("scrollText");
//样式设置,与滚动基本无关,应该用CSS设置。
scrollingBox.style.height
= "170px";
scrollingBox.style.overflow = "hidden";
scrollingInterval
= setInterval("scrolling()", 50);
//鼠标划过停止滚动效果
scrollingBox.onmouseover
//鼠标划出回复滚动效果
scrollingBox.onmouseout
//滚动效果
function scrolling() {
//开始滚动,origin是原来scrollTop
var origin = scrollingBox.scrollTop ++;
//如果到头了
if (origin == scrollingBox.scrollTop) {
//如果是第一次到头
if (! reachedBottom) {
scrollingBox.innerHTML += scrollingBox.innerHTML;
reachedBottom =
//已经到头过,只需回复头接尾的效果
scrollingBox.scrollTop =
function over() {
clearInterval(scrollingInterval);
function out() {
scrollingInterval = setInterval("scrolling()", 50);> 现在一般网上。玩什么游戏的较多?无论男女、
我的世界,这个你应该知道
其它回答 lol
发表我的评论

我要回帖

更多关于 清理包裹任务 的文章

 

随机推荐