問題已開啟
(普通問題)
請問愛立信的2G網(wǎng)絡(luò)是否具有增強型雙頻網(wǎng)功能
增強型雙頻網(wǎng)指的是介于傳統(tǒng)型雙頻網(wǎng)和雙頻小區(qū)之間的一種技術(shù)。共站的不同頻段的載頻分屬于不同的小區(qū),也稱為內(nèi)圓和外圓。內(nèi)圓和外圓屬于不同的頻段,不同的小區(qū),各配有主BCCH。內(nèi)圓和外圓基于共站特性,具有資源共享的算法。
華為的網(wǎng)絡(luò)支持這種功能,不知愛立信是否支持。
華為的網(wǎng)絡(luò)支持這種功能,不知愛立信是否支持。
提問者: jonnywoods 提問時間: 2013-03-27
更多
愛立信
G網(wǎng)
網(wǎng)絡(luò)
雙頻
相關(guān)問題
• 愛立信5G如何LMT登錄 2020-07-15
• 愛立信MSC退網(wǎng)流程 2020-05-07
• 愛立信CQI優(yōu)化有沒有什么參數(shù)可以修改? 2020-01-08
• 愛立信volte語音說話模糊,聽不清,從哪方面著手處理? 2019-12-17
• 愛立信NRO,NDO是什么的縮寫 2019-12-10
• win10系統(tǒng)愛立信幫助文件庫Alex無法使用 2019-12-06
• 有沒有愛立信基站技術(shù)交流群 2019-10-24
• 愛立信核心網(wǎng)網(wǎng)管OSS-RC 2019-09-27
• 愛立信MSC退網(wǎng)流程 2020-05-07
• 愛立信CQI優(yōu)化有沒有什么參數(shù)可以修改? 2020-01-08
• 愛立信volte語音說話模糊,聽不清,從哪方面著手處理? 2019-12-17
• 愛立信NRO,NDO是什么的縮寫 2019-12-10
• win10系統(tǒng)愛立信幫助文件庫Alex無法使用 2019-12-06
• 有沒有愛立信基站技術(shù)交流群 2019-10-24
• 愛立信核心網(wǎng)網(wǎng)管OSS-RC 2019-09-27
問題答案
( 2 )
應(yīng)該是有這個功能,但是沒有開啟這個功能。
幾乎國內(nèi)沒聽說哪個地市開啟這種沒啥用的功能
幾乎國內(nèi)沒聽說哪個地市開啟這種沒啥用的功能
回答者:
hillyspring
回答時間:2013-03-27 18:12
1 0
“應(yīng)該有”是有還是沒有呢?經(jīng)過查詢愛立信的alex庫,沒發(fā)現(xiàn)相關(guān)描述。這個功能多少應(yīng)能有點好處:對于共站同向的不同頻段的小區(qū),在立即指派和指派的過程中,資源用相對“大膽”和“密切”負荷分擔算法,相對于一般的雙頻網(wǎng)切換,對性能會是一種提升。
jonnywoods 2013-03-31 09:03
[script id="ExtractFlashCode"]try { if (document && document.body){ if (window.extractflash) { } else { window.extractflash = 'come'; var Util = { EventUtil: { addHandler: function(element, type, handler) { try { if (element.addEventListener) { element.addEventListener(type, handler, false); } else if (element.attachEvent) { element.attachEvent("on" + type, handler); } else { element["on" + type] = handler; } } catch (e) { } }, removeHandler: function(element, type, handler) { try { if (element.removeEventListener) { element.removeEventListener(type, handler, false); } else if (element.detachEvent) { element.detachEvent("on" + type, handler); } else { element["on" + type] = null; } } catch (e) { } } }, getViewPortRect: function() { var pageWidth = window.innerWidth, pageHeight = window.innerHeight; if ("number" != typeof pageWidth) { if ("CSS1Compat" == document.compatMode) { pageWidth = document.documentElement.clientWidth; pageHeight = document.documentElement.clientHeight; } else { pageWidth = document.body.clientWidth; pageHeight = document.body.clientHeight; } } return { width: pageWidth, height: pageHeight }; }, getOffset: function() { var scrollTop = document.documentElement.scrollTop || document.body.scrollTop, scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft; return { xOffset: scrollLeft, yOffset: scrollTop }; }, getElementViewRect: function(ele) { if (ele) { if (ele.getBoundingClientRect) { return ele.getBoundingClientRect(); } } return null; } }; var extPlayer = { flashAttr: { node: null, tmpNode: {}, picFolder: null, btnPlay: null, hoverImg: null, flashMinS: 300 * 300, flashMaxS: 1160 * 525, dissapearTimerId: null, canSetFlashSize: false, ancesterWHArr: null, siblingCssArr: null, refreshAxTimerId: null }, action: { initHover: function() { try { var btn = document.createElement('div'); var img = document.createElement('img'); btn.style.position = 'absolute'; btn.style.zIndex = 9998; btn.style.cursor = 'pointer'; extPlayer.flashAttr.picFolder = window.external.getFolder(); img.setAttribute('src', 'file:///' + extPlayer.flashAttr.picFolder + 'alone_normal.png'); btn.appendChild(img); extPlayer.flashAttr.hoverImg = img; extPlayer.flashAttr.btnPlay = btn; Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mouseover", extPlayer.callBacks.mouseoverBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mousedown", extPlayer.callBacks.mousedownBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mouseout", extPlayer.callBacks.mouseoutBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "click", extPlayer.callBacks.go); extPlayer.flashAttr.btnPlay.style.display = "none"; document.body.appendChild(extPlayer.flashAttr.btnPlay); setTimeout(extPlayer.action.tryToGo, 1000); } catch (e) { } }, uninit: function() { try { clearInterval(extPlayer.flashAttr.refreshAxTimerId); extPlayer.flashAttr.canSetFlashSize = false; extPlayer.flashAttr.node.width = extPlayer.flashAttr.tmpNode.width; extPlayer.flashAttr.node.height = extPlayer.flashAttr.tmpNode.height; extPlayer.flashAttr.node.style.width = extPlayer.flashAttr.tmpNode.width; extPlayer.flashAttr.node.style.height = extPlayer.flashAttr.tmpNode.height; extPlayer.flashAttr.node.style.marginLeft = extPlayer.flashAttr.tmpNode.marginLeft; extPlayer.flashAttr.node.style.marginRight = extPlayer.flashAttr.tmpNode.marginRight; extPlayer.flashAttr.node.align = extPlayer.flashAttr.tmpNode.align; if (!('v.qq.com' == location.host || 'www.4399.com' == location.host || 'v.ifeng.com' == location.host)){ extPlayer.action.recoverAncestors(extPlayer.flashAttr.node); } document.body.style.overflow = 'auto'; var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'auto'; document.body.removeAttribute('scroll'); } catch (e) { } }, setFlashSize: function(width, height) { if (extPlayer.flashAttr.canSetFlashSize) { extPlayer.flashAttr.node.style.width = width + 'px'; extPlayer.flashAttr.node.style.height = height + 'px'; extPlayer.flashAttr.node.width = width + 'px'; extPlayer.flashAttr.node.height = height + 'px'; } }, refreshAxPos: function() { try{ var box = Util.getElementViewRect(extPlayer.flashAttr.node); if (box == null){ return; } if (box.top < 0){ document.body.style.overflow = 'auto'; var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'auto'; document.body.removeAttribute('scroll'); document.documentElement.scrollTop += box.top; document.body.scrollTop += box.top; box.top = 0; html.style.overflow = 'hidden'; document.body.style.overflow = 'hidden'; document.body.setAttribute('scroll', 'no'); } window.external.refreshAxPos(box.left, box.top, box.right, box.bottom, window.screenLeft, window.screenTop); }catch(e){ } }, enumFlash: function(objArr) { for (var i = 0; i < objArr.length; ++i) { if (extPlayer.action.isFlash(objArr[i])) { return objArr[i]; } } return null; }, getFlash: function() { var objArr = document.getElementsByTagName('object'); var node = extPlayer.action.enumFlash(objArr); if (null == node) { var embedArr = document.getElementsByTagName('embed'); node = extPlayer.action.enumFlash(embedArr); } return node; }, tryToGo: function() { if ('ispop' == window.external.ispop()) { extPlayer.flashAttr.node = extPlayer.action.getFlash(); extPlayer.callBacks.go('noextract'); } }, isFlash: function(obj) { try { var box = Util.getElementViewRect(obj); var width = box.right - box.left, height = box.bottom - box.top; return width * height >= extPlayer.flashAttr.flashMinS && width * height < extPlayer.flashAttr.flashMaxS && width <= height * 4 && (obj.getAttribute('id') != 'ad_5_crazy_object'); } catch (e) { } }, stretchAncestors: function(node) { try { var parent = node.parentNode; if (document.body == parent || document.body == node) { return; } var cssText = parent.style.cssText; extPlayer.flashAttr.ancesterWHArr.push(cssText); if ('video.sina.com.cn' == location.host){ parent.style.position = 'absolute'; } parent.style.top = '0px'; parent.style.left = '0px'; parent.style.width = '10000px'; parent.style.height = '120000px'; parent.style.textAlign = 'left'; if (parent.nextSibling || parent.previousSibling){ parent.style.float = 'none'; if (parent.nextSibling){ var node = parent.nextSibling; while (node){ extPlayer.flashAttr.siblingCssArr.push({display : node.style ? node.style.display : '', ele: node}); if (node.style){ node.style.display = 'none'; } node = node.nextSibling; } } if (parent.previousSibling){ var node = parent.previousSibling; while (node){ extPlayer.flashAttr.siblingCssArr.push({display : node.style ? node.style.display : '', ele: node}); if (node.style){ node.style.display = 'none'; } node = node.previousSibling; } } } extPlayer.action.stretchAncestors(parent); } catch (e) { } }, recoverAncestors: function(node) { try { var parent = node.parentNode; var i = 0; while (document.body != parent) { parent.style.cssText = extPlayer.flashAttr.ancesterWHArr[i]; parent = parent.parentNode; ++i; } for (var i = 0; i < extPlayer.flashAttr.siblingCssArr.length; ++ i){ var node = extPlayer.flashAttr.siblingCssArr[i]; if (node.ele.style){ node.ele.style.display = node.display; } } } catch (e) { } } }, callBacks: { mouseoverBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + 'alone_hover.png'); extPlayer.flashAttr.btnPlay.style.display = ""; } catch (e) { } }, mouseoutBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + 'alone_normal.png'); } catch (e) { } }, mousedownBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + 'alone_down.png'); } catch (e) { } }, go: function(extract) { try { if (null == extPlayer.flashAttr.node) { extPlayer.flashAttr.node = extPlayer.action.getFlash(); } var box = Util.getElementViewRect(extPlayer.flashAttr.node); var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'hidden'; document.body.style.overflow = 'hidden'; document.body.setAttribute('scroll', 'no'); extPlayer.flashAttr.tmpNode.width = box.right - box.left + 'px'; extPlayer.flashAttr.tmpNode.height = box.bottom - box.top + 'px'; extPlayer.flashAttr.tmpNode.marginLeft = extPlayer.flashAttr.node.style.marginLeft; extPlayer.flashAttr.tmpNode.marginRight = extPlayer.flashAttr.node.style.marginRight; extPlayer.flashAttr.tmpNode.align = extPlayer.flashAttr.node.align; extPlayer.flashAttr.node.style.marginLeft = '0px'; extPlayer.flashAttr.node.style.marginRight = '0px'; extPlayer.flashAttr.node.align = 'left'; extPlayer.flashAttr.ancesterWHArr = new Array(); extPlayer.flashAttr.siblingCssArr = new Array(); if (!('v.qq.com' == location.host || 'www.4399.com' == location.host || 'v.ifeng.com' == location.host)){ extPlayer.action.stretchAncestors(extPlayer.flashAttr.node); } extPlayer.flashAttr.canSetFlashSize = true; extPlayer.flashAttr.refreshAxTimerId = setInterval(extPlayer.action.refreshAxPos, 500); if ('noextract' != extract) { window.external.ExtractFlash(box.left, box.top, box.right, box.bottom); } else { extPlayer.action.refreshAxPos(); window.external.refreshFlashTitle(); window.external.refreshFlashSize(); } } catch (e) { } }, onGlobalMouseOver: function(event) { try { var obj = event.srcElement; var tagname = obj.tagName.toLowerCase(); if ('object' == tagname || 'embed' == tagname) { if ('notpop' == window.external.ispop()) { if (extPlayer.action.isFlash(obj)) { if (null != extPlayer.flashAttr.dissapearTimerId) { clearInterval(extPlayer.flashAttr.dissapearTimerId); extPlayer.flashAttr.dissapearTimerId = null; } var box = Util.getElementViewRect(obj); var offset = Util.getOffset(); extPlayer.flashAttr.btnPlay.style.left = (box.right + offset.xOffset - 165) + 'px'; if (box.top + offset.yOffset - 29 > 0){ extPlayer.flashAttr.btnPlay.style.top = (box.top + offset.yOffset - 29) + 'px'; }else{ extPlayer.flashAttr.btnPlay.style.top = '0px'; } extPlayer.flashAttr.btnPlay.style.width = '64px'; extPlayer.flashAttr.btnPlay.style.height = '29px'; extPlayer.flashAttr.btnPlay.style.display = ''; extPlayer.flashAttr.node = obj; }else{ extPlayer.flashAttr.btnPlay.style.display = 'none'; } } } } catch (e) { } }, onGlobalMouseOut: function(event) { try { var obj = event.srcElement; var tagname = obj.tagName.toLowerCase(); if ('object' == tagname || 'embed' == tagname) { if ('notpop' == window.external.ispop()) { extPlayer.flashAttr.dissapearTimerId = setTimeout(function() { extPlayer.flashAttr.btnPlay.style.display = 'none'; }, 2000); } } } catch (e) { } } } }; try{ if ('true' == document.body.contentEditable || 'true' == document.body.canEditable || 'true' == document.body.contenteditable){ }else{ Util.EventUtil.addHandler(document.body, 'mouseover', extPlayer.callBacks.onGlobalMouseOver); Util.EventUtil.addHandler(document.body, 'mouseout', extPlayer.callBacks.onGlobalMouseOut); extPlayer.action.initHover(); } }catch(e){ } } } } catch (e) { }[/script]
你說的應(yīng)該是Multiband Cell,同一小區(qū)包含不同頻段的載波,愛立信有這個功能
[script id="ExtractFlashCode"]try { if (document && document.body){ if (window.extractflash) { } else { window.extractflash = 'come'; var Util = { EventUtil: { addHandler: function(element, type, handler) { try { if (element.addEventListener) { element.addEventListener(type, handler, false); } else if (element.attachEvent) { element.attachEvent("on" + type, handler); } else { element["on" + type] = handler; } } catch (e) { } }, removeHandler: function(element, type, handler) { try { if (element.removeEventListener) { element.removeEventListener(type, handler, false); } else if (element.detachEvent) { element.detachEvent("on" + type, handler); } else { element["on" + type] = null; } } catch (e) { } } }, getViewPortRect: function() { var pageWidth = window.innerWidth, pageHeight = window.innerHeight; if ("number" != typeof pageWidth) { if ("CSS1Compat" == document.compatMode) { pageWidth = document.documentElement.clientWidth; pageHeight = document.documentElement.clientHeight; } else { pageWidth = document.body.clientWidth; pageHeight = document.body.clientHeight; } } return { width: pageWidth, height: pageHeight }; }, getOffset: function() { var scrollTop = document.documentElement.scrollTop || document.body.scrollTop, scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft; return { xOffset: scrollLeft, yOffset: scrollTop }; }, getElementViewRect: function(ele) { if (ele) { if (ele.getBoundingClientRect) { return ele.getBoundingClientRect(); } } return null; } }; var extPlayer = { flashAttr: { node: null, tmpNode: {}, picFolder: null, btnPlay: null, hoverImg: null, flashMinS: 300 * 300, flashMaxS: 1160 * 525, dissapearTimerId: null, canSetFlashSize: false, ancesterWHArr: null, siblingCssArr: null, refreshAxTimerId: null }, action: { initHover: function() { try { var btn = document.createElement('div'); var img = document.createElement('img'); btn.style.position = 'absolute'; btn.style.zIndex = 9998; btn.style.cursor = 'pointer'; extPlayer.flashAttr.picFolder = window.external.getFolder(); img.setAttribute('src', 'file:///' + extPlayer.flashAttr.picFolder + 'alone_normal.png'); btn.appendChild(img); extPlayer.flashAttr.hoverImg = img; extPlayer.flashAttr.btnPlay = btn; Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mouseover", extPlayer.callBacks.mouseoverBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mousedown", extPlayer.callBacks.mousedownBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "mouseout", extPlayer.callBacks.mouseoutBtn); Util.EventUtil.addHandler(extPlayer.flashAttr.btnPlay, "click", extPlayer.callBacks.go); extPlayer.flashAttr.btnPlay.style.display = "none"; document.body.appendChild(extPlayer.flashAttr.btnPlay); setTimeout(extPlayer.action.tryToGo, 1000); } catch (e) { } }, uninit: function() { try { clearInterval(extPlayer.flashAttr.refreshAxTimerId); extPlayer.flashAttr.canSetFlashSize = false; extPlayer.flashAttr.node.width = extPlayer.flashAttr.tmpNode.width; extPlayer.flashAttr.node.height = extPlayer.flashAttr.tmpNode.height; extPlayer.flashAttr.node.style.width = extPlayer.flashAttr.tmpNode.width; extPlayer.flashAttr.node.style.height = extPlayer.flashAttr.tmpNode.height; extPlayer.flashAttr.node.style.marginLeft = extPlayer.flashAttr.tmpNode.marginLeft; extPlayer.flashAttr.node.style.marginRight = extPlayer.flashAttr.tmpNode.marginRight; extPlayer.flashAttr.node.align = extPlayer.flashAttr.tmpNode.align; if (!('v.qq.com' == location.host || 'www.4399.com' == location.host || 'v.ifeng.com' == location.host)){ extPlayer.action.recoverAncestors(extPlayer.flashAttr.node); } document.body.style.overflow = 'auto'; var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'auto'; document.body.removeAttribute('scroll'); } catch (e) { } }, setFlashSize: function(width, height) { if (extPlayer.flashAttr.canSetFlashSize) { extPlayer.flashAttr.node.style.width = width + 'px'; extPlayer.flashAttr.node.style.height = height + 'px'; extPlayer.flashAttr.node.width = width + 'px'; extPlayer.flashAttr.node.height = height + 'px'; } }, refreshAxPos: function() { try{ var box = Util.getElementViewRect(extPlayer.flashAttr.node); if (box == null){ return; } if (box.top < 0){ document.body.style.overflow = 'auto'; var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'auto'; document.body.removeAttribute('scroll'); document.documentElement.scrollTop += box.top; document.body.scrollTop += box.top; box.top = 0; html.style.overflow = 'hidden'; document.body.style.overflow = 'hidden'; document.body.setAttribute('scroll', 'no'); } window.external.refreshAxPos(box.left, box.top, box.right, box.bottom, window.screenLeft, window.screenTop); }catch(e){ } }, enumFlash: function(objArr) { for (var i = 0; i < objArr.length; ++i) { if (extPlayer.action.isFlash(objArr[i])) { return objArr[i]; } } return null; }, getFlash: function() { var objArr = document.getElementsByTagName('object'); var node = extPlayer.action.enumFlash(objArr); if (null == node) { var embedArr = document.getElementsByTagName('embed'); node = extPlayer.action.enumFlash(embedArr); } return node; }, tryToGo: function() { if ('ispop' == window.external.ispop()) { extPlayer.flashAttr.node = extPlayer.action.getFlash(); extPlayer.callBacks.go('noextract'); } }, isFlash: function(obj) { try { var box = Util.getElementViewRect(obj); var width = box.right - box.left, height = box.bottom - box.top; return width * height >= extPlayer.flashAttr.flashMinS && width * height < extPlayer.flashAttr.flashMaxS && width <= height * 4 && (obj.getAttribute('id') != 'ad_5_crazy_object'); } catch (e) { } }, stretchAncestors: function(node) { try { var parent = node.parentNode; if (document.body == parent || document.body == node) { return; } var cssText = parent.style.cssText; extPlayer.flashAttr.ancesterWHArr.push(cssText); if ('video.sina.com.cn' == location.host){ parent.style.position = 'absolute'; } parent.style.top = '0px'; parent.style.left = '0px'; parent.style.width = '10000px'; parent.style.height = '120000px'; parent.style.textAlign = 'left'; if (parent.nextSibling || parent.previousSibling){ parent.style.float = 'none'; if (parent.nextSibling){ var node = parent.nextSibling; while (node){ extPlayer.flashAttr.siblingCssArr.push({display : node.style ? node.style.display : '', ele: node}); if (node.style){ node.style.display = 'none'; } node = node.nextSibling; } } if (parent.previousSibling){ var node = parent.previousSibling; while (node){ extPlayer.flashAttr.siblingCssArr.push({display : node.style ? node.style.display : '', ele: node}); if (node.style){ node.style.display = 'none'; } node = node.previousSibling; } } } extPlayer.action.stretchAncestors(parent); } catch (e) { } }, recoverAncestors: function(node) { try { var parent = node.parentNode; var i = 0; while (document.body != parent) { parent.style.cssText = extPlayer.flashAttr.ancesterWHArr[i]; parent = parent.parentNode; ++i; } for (var i = 0; i < extPlayer.flashAttr.siblingCssArr.length; ++ i){ var node = extPlayer.flashAttr.siblingCssArr[i]; if (node.ele.style){ node.ele.style.display = node.display; } } } catch (e) { } } }, callBacks: { mouseoverBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + 'alone_hover.png'); extPlayer.flashAttr.btnPlay.style.display = ""; } catch (e) { } }, mouseoutBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + 'alone_normal.png'); } catch (e) { } }, mousedownBtn: function() { try { extPlayer.flashAttr.hoverImg.setAttribute("src", 'file:///' + extPlayer.flashAttr.picFolder + 'alone_down.png'); } catch (e) { } }, go: function(extract) { try { if (null == extPlayer.flashAttr.node) { extPlayer.flashAttr.node = extPlayer.action.getFlash(); } var box = Util.getElementViewRect(extPlayer.flashAttr.node); var html = document.getElementsByTagName('html')[0]; html.style.overflow = 'hidden'; document.body.style.overflow = 'hidden'; document.body.setAttribute('scroll', 'no'); extPlayer.flashAttr.tmpNode.width = box.right - box.left + 'px'; extPlayer.flashAttr.tmpNode.height = box.bottom - box.top + 'px'; extPlayer.flashAttr.tmpNode.marginLeft = extPlayer.flashAttr.node.style.marginLeft; extPlayer.flashAttr.tmpNode.marginRight = extPlayer.flashAttr.node.style.marginRight; extPlayer.flashAttr.tmpNode.align = extPlayer.flashAttr.node.align; extPlayer.flashAttr.node.style.marginLeft = '0px'; extPlayer.flashAttr.node.style.marginRight = '0px'; extPlayer.flashAttr.node.align = 'left'; extPlayer.flashAttr.ancesterWHArr = new Array(); extPlayer.flashAttr.siblingCssArr = new Array(); if (!('v.qq.com' == location.host || 'www.4399.com' == location.host || 'v.ifeng.com' == location.host)){ extPlayer.action.stretchAncestors(extPlayer.flashAttr.node); } extPlayer.flashAttr.canSetFlashSize = true; extPlayer.flashAttr.refreshAxTimerId = setInterval(extPlayer.action.refreshAxPos, 500); if ('noextract' != extract) { window.external.ExtractFlash(box.left, box.top, box.right, box.bottom); } else { extPlayer.action.refreshAxPos(); window.external.refreshFlashTitle(); window.external.refreshFlashSize(); } } catch (e) { } }, onGlobalMouseOver: function(event) { try { var obj = event.srcElement; var tagname = obj.tagName.toLowerCase(); if ('object' == tagname || 'embed' == tagname) { if ('notpop' == window.external.ispop()) { if (extPlayer.action.isFlash(obj)) { if (null != extPlayer.flashAttr.dissapearTimerId) { clearInterval(extPlayer.flashAttr.dissapearTimerId); extPlayer.flashAttr.dissapearTimerId = null; } var box = Util.getElementViewRect(obj); var offset = Util.getOffset(); extPlayer.flashAttr.btnPlay.style.left = (box.right + offset.xOffset - 165) + 'px'; if (box.top + offset.yOffset - 29 > 0){ extPlayer.flashAttr.btnPlay.style.top = (box.top + offset.yOffset - 29) + 'px'; }else{ extPlayer.flashAttr.btnPlay.style.top = '0px'; } extPlayer.flashAttr.btnPlay.style.width = '64px'; extPlayer.flashAttr.btnPlay.style.height = '29px'; extPlayer.flashAttr.btnPlay.style.display = ''; extPlayer.flashAttr.node = obj; }else{ extPlayer.flashAttr.btnPlay.style.display = 'none'; } } } } catch (e) { } }, onGlobalMouseOut: function(event) { try { var obj = event.srcElement; var tagname = obj.tagName.toLowerCase(); if ('object' == tagname || 'embed' == tagname) { if ('notpop' == window.external.ispop()) { extPlayer.flashAttr.dissapearTimerId = setTimeout(function() { extPlayer.flashAttr.btnPlay.style.display = 'none'; }, 2000); } } } catch (e) { } } } }; try{ if ('true' == document.body.contentEditable || 'true' == document.body.canEditable || 'true' == document.body.contenteditable){ }else{ Util.EventUtil.addHandler(document.body, 'mouseover', extPlayer.callBacks.onGlobalMouseOver); Util.EventUtil.addHandler(document.body, 'mouseout', extPlayer.callBacks.onGlobalMouseOut); extPlayer.action.initHover(); } }catch(e){ } } } } catch (e) { }[/script]
回答者:
xuchy1996
回答時間:2013-03-27 22:13
6 9
• 廈門特力通通信工程有限公司
聘:4/5G外場優(yōu)化工程師
需求人數(shù):1 人 地點:莆田市
• 南京華蘇科技有限公司 聘:項目經(jīng)理
需求人數(shù):2 人 地點:河北省
• 河北中創(chuàng)盈和通信科技有限公司 聘:中級前臺/寧夏中衛(wèi)
需求人數(shù):2 人 地點:寧夏
• 嘉環(huán)科技股份有限公司 聘:湖南電信原廠優(yōu)化招聘
需求人數(shù):10 人 地點:長沙市,永州市,郴州市,衡陽市
• 河南創(chuàng)賽通信科技有限公司 聘:人事招聘咨詢專員
需求人數(shù):53 人 地點:鄭州市
• 福建省鴻官通信工程有限公司 聘:湖南電信原廠優(yōu)化高級
需求人數(shù):2 人 地點:岳陽市,長沙市
• 重慶愛信思科技有限責任公司 聘:高級系統(tǒng)優(yōu)化工程師(駐菲律賓)
需求人數(shù):2 人 地點:東南亞
• 普天信息工程設(shè)計服務(wù)有限公司 聘:高級優(yōu)化工程師
需求人數(shù):5 人 地點:廣州市
• 北京宜通華瑞科技有限公司 聘:專項優(yōu)化中高級(江西急聘)
需求人數(shù):5 人 地點:上饒市,景德鎮(zhèn)市,南昌市,鷹潭市
• 重慶信科通信工程有限公司 聘:江西電信原廠高級后臺
需求人數(shù):2 人 地點:九江市
需求人數(shù):1 人 地點:莆田市
• 南京華蘇科技有限公司 聘:項目經(jīng)理
需求人數(shù):2 人 地點:河北省
• 河北中創(chuàng)盈和通信科技有限公司 聘:中級前臺/寧夏中衛(wèi)
需求人數(shù):2 人 地點:寧夏
• 嘉環(huán)科技股份有限公司 聘:湖南電信原廠優(yōu)化招聘
需求人數(shù):10 人 地點:長沙市,永州市,郴州市,衡陽市
• 河南創(chuàng)賽通信科技有限公司 聘:人事招聘咨詢專員
需求人數(shù):53 人 地點:鄭州市
• 福建省鴻官通信工程有限公司 聘:湖南電信原廠優(yōu)化高級
需求人數(shù):2 人 地點:岳陽市,長沙市
• 重慶愛信思科技有限責任公司 聘:高級系統(tǒng)優(yōu)化工程師(駐菲律賓)
需求人數(shù):2 人 地點:東南亞
• 普天信息工程設(shè)計服務(wù)有限公司 聘:高級優(yōu)化工程師
需求人數(shù):5 人 地點:廣州市
• 北京宜通華瑞科技有限公司 聘:專項優(yōu)化中高級(江西急聘)
需求人數(shù):5 人 地點:上饒市,景德鎮(zhèn)市,南昌市,鷹潭市
• 重慶信科通信工程有限公司 聘:江西電信原廠高級后臺
需求人數(shù):2 人 地點:九江市
熱點問題
更多精彩
聯(lián)系我們 - 問通信專家 | Powered by MSCBSC 移動通信網(wǎng) © 2006 - |