mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
회원가입시 중복 항목 체크하는 부분에서 IE의 JS 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2570 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
843decd7f2
commit
75dd23259a
1 changed files with 7 additions and 4 deletions
|
|
@ -47,7 +47,10 @@ function completeMemberCheckValue(ret_obj, response_tags, e) {
|
|||
if(ret_obj['message']=='success') {
|
||||
var dummy_id = 'dummy_check_'+name;
|
||||
var dummy = xGetElementById(dummy_id);
|
||||
if(dummy) xInnerHtml(dummy,'');
|
||||
if(dummy) {
|
||||
xInnerHtml(dummy,'');
|
||||
dummy.style.display = 'none';
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -59,17 +62,17 @@ function completeMemberCheckValue(ret_obj, response_tags, e) {
|
|||
dummy.style.display = "none";
|
||||
dummy.style.clear = 'both';
|
||||
dummy.style.marginTop = '10px';
|
||||
obj.parentNode.insertBefore(dummy, obj.nextChild);
|
||||
obj.parentNode.insertBefore(dummy, obj.lastChild);
|
||||
}
|
||||
|
||||
xInnerHtml(dummy, ret_obj['message']);
|
||||
|
||||
dummy.style.display = "block";
|
||||
|
||||
obj.focus();
|
||||
//obj.focus();
|
||||
|
||||
// 3초 정도 후에 정리
|
||||
setTimeout(function() { removeMemberCheckValueOutput(dummy, obj); }, 3000);
|
||||
//setTimeout(function() { removeMemberCheckValueOutput(dummy, obj); }, 3000);
|
||||
}
|
||||
|
||||
// 결과 메세지를 정리하는 함수
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue