| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 589 人关注过本帖
标题:下面代码为什么不能显示中文
取消只看楼主 加入收藏
jschx
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-7-31
收藏
 问题点数:0 回复次数:0 
下面代码为什么不能显示中文


function Bubble(t,o,s)
{
this.t = t;
this.o = o;
this.b = false;
this.s = typeof s != 'undefined' ? s : 0;
}

Bubble.prototype.display = function (s)
{
if ( this.b )
{
this.b.innerHTML = s;
this.b.style.marginTop = -

(this.b.offsetHeight+this.o+4)+'px';
return true;
}
this.b = document.createElement ( 'span' );
if(!this.b)return false;
obj=this;
this.b.onclick=function(){obj.hide();}

var styles =
{
'backgroundColor' : '#FBFFDF',
'border' : '1px solid #505050',
'padding' : '5px',
'position' : 'absolute',
'lineHeight' : '1.4em',
'MozBorderRadius' : '4px'
};
if ( this.s > 0 ) styles['width'] = this.s + 'px';

setStyles ( this.b, styles );
this.b.innerHTML = s;
this.t.parentNode.insertBefore(this.b,this.t);
this.b.style.marginTop = -(this.b.clientHeight+this.o+4)+'px';
}

Bubble.prototype.hide = function()
{
if(!this.b)return true;
this.b.style.display='none';
//deleteNode(this.b);
this.b=false;
}

+++++++++++++++++++++++++++++++++++++++++++
function checkName ( )
{
if ( !newpm_to ) return false;
var username = newpm_to.value;

var checkURL = 'usercp.php?action=checkname&username=' + escape

( username );

var check = function ( result )
{
if ( result == 'OK' )
{
bubble.display ( '&nbsp;<img

src="templates/defaultcn/images/check.gif" class="img1" alt="" /> 找到

用户.' );
timer.start('bubble.hide()',1500);
}
else
{
bubble.display('&nbsp;<img

src="templates/default2/images/ex.gif" class="img1" alt="" /> ' +

result);
}
}
xmlhttpGet(checkURL,check);
}


result在PHP网页调用中为中文字串,但网页显示时为????,不能正常显示汉字,问题出在哪里,请高手指点

[此贴子已经被作者于2006-7-31 22:52:11编辑过]

搜索更多相关主题的帖子: 中文 代码 
2006-07-31 22:49
快速回复:下面代码为什么不能显示中文
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017566 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved