在chrome下不能正常显示一个display: inline-block或者display: block的元素怎么办
demo页面只有一个输入框,当输入框有焦点时高度变大,并且显示 字数显示和回复按钮。
现在问题是,chrome只能在第一次刷新之后点击输入框然后高度变大并显示 字数显示和回复按钮的元素,但是再点击第二次输入框就只有高度变大,却没有看到字数显示和回复按钮的元素了(firefox正常)
案例:人人网评论功能
0/140
//获取下一个兄弟元素节点function getNextElement(node)
{ if(node.nodeType == 1){ return node; }
if(node.nextSibling){ return getNextElement(node.nextSibling); }
return false;} document.getElementsByClassName('input-area')[0].onfocus = function()
{this.className = 'input-area input-area_expand'var nextEl = getNextElement(this.nextSibling);
nextEl.className = 'input-action input-action_show';this.value = '';
console.log('focus:'+nextEl.className)}document.getElementsByClassName('input-area')[0].onblur = function() {var nextEl = getNextElement(this.nextSibling);nextEl.className = 'input-action';this.className = 'input-area'this.value = '评论……';console.log('blur :'+nextEl.className);}以上就是在chrome下不能显示displayblock或者inlineblock的元素怎么办?,更多请关注php中文网其它相关文章!









