-------------------------------------------------------------------------------------------------------
한글만 입력받기
<script language='javascript'>
function hangul()
{
if((event.keyCode < 12592) || (event.keyCode > 12687))
event.returnValue = false
}
</script>
<input type="text" name="Name" size="10" maxlength="15" class=ad onKeyPress="hangul();">
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
input text 한영 한글/영문 입력 설정
<FORM>
<input style="ime-mode:active;">
<input style="ime-mode:inactive;">
</FORM>
ime-mode:active 이면 한글입력
ime-mode:inactive 이면 영문입력
익스플로러 6에서만 작동
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
한글 전환 모드 안 되게 하기
<input type="text" style="ime-mode:disabled;">
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
한영 한글/영문 전환 버튼
<html>
<head>
<script language="javascript">
<!--
function Kren(form)
{
if(form.test.style.imeMode == "active")
form.test.style.imeMode = "inactive";
else
form.test.style.imeMode = "active";
}
//-->
</script>
</head>
<body>
<form name=form1 action="">
<input type="text" name="test">
<input type="button" onClick="Kren(this.form)" value="한/영전환">
</form>
익스플로러 6이상에서만 작동합니다.
</body>
</html>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
숫자만 입력받기
<script>
function num_only(){
if((event.keyCode<48) || (event.keyCode>57)){
event.returnValue=false;
}
}
</script>
<form name='test'>
<input type=text name='numInputField' OnKeyPress="num_only()" style="ime-mode:disabled">
</form>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
전화번호 포맷으로 숫자만 입력하면 (02)123-3423 이런식으로 바꿔줍니다
<SCRIPT LANGUAGE="JavaScript">
<!--
///
var n;
var p;
var p1;
function ValidatePhone(){
p=p1.value
if(p.length==3){
pp=p;
d4=p.indexOf('(')
d5=p.indexOf(')')
if(d4==-1){
pp="("+pp;
}
if(d5==-1){
pp=pp+")";
}
document.frmPhone.txtphone.value="";
document.frmPhone.txtphone.value=pp;
}
if(p.length>3){
d1=p.indexOf('(')
d2=p.indexOf(')')
if (d2==-1){
l30=p.length;
p30=p.substring(0,4);
p30=p30+")"
p31=p.substring(4,l30);
pp=p30+p31;
document.frmPhone.txtphone.value="";
document.frmPhone.txtphone.value=pp;
}
}
if(p.length>5){
p11=p.substring(d1+1,d2);
if(p11.length>3){
p12=p11;
l12=p12.length;
l15=p.length
p13=p11.substring(0,3);
p14=p11.substring(3,l12);
p15=p.substring(d2+1,l15);
document.frmPhone.txtphone.value="";
pp="("+p13+")"+p14+p15;
document.frmPhone.txtphone.value=pp;
}
l16=p.length;
p16=p.substring(d2+1,l16);
l17=p16.length;
if(l17>3&&p16.indexOf('-')==-1){
p17=p.substring(d2+1,d2+4);
p18=p.substring(d2+4,l16);
p19=p.substring(0,d2+1);
pp=p19+p17+"-"+p18;
document.frmPhone.txtphone.value="";
document.frmPhone.txtphone.value=pp;
}
}
setTimeout(ValidatePhone,100)
}
function getIt(m){
n=m.name;
p1=m
ValidatePhone()
}
function testphone(obj1){
p=obj1.value
p=p.replace("(","")
p=p.replace(")","")
p=p.replace("-","")
p=p.replace("-","")
if (isNaN(p)==true){
alert("Check phone");
return false;
}
}
//-->
</script>
전화번호보단 다른 데 응용하시면 좋을 듯..<br>태그인넷 tagin.net<br>
<form name=frmPhone>
<input type=text name=txtphone maxlength="13" onclick="javascript:getIt(this)" >
</form>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
입력박스 폼안의 숫자 1000단위로 자동 ,콤마 찍어주기
<SCRIPT LANGUAGE="JavaScript">
<!--
function Number_Format(fn){
var str = fn.value;
var Re = /[^0-9]/g;
var ReN = /(-?[0-9]+)([0-9]{3})/;
str = str.replace(Re,'');
while (ReN.test(str)) {
str = str.replace(ReN, "$1,$2");
}
fn.value = str;
}
//-->
</SCRIPT>
<FORM name=fm METHOD=POST ACTION="">
<INPUT TYPE="text" NAME="money" Onkeyup="Number_Format(this)";>
</FORM>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
특수문자 입력금지
<center>
<form onSubmit="return false;">
<a href="http://tagin.net">특수문자를 입력 할 수 없습니다: (예 !@#$%^&* etc)<br>
<textarea rows=2 cols=20 name=comments onKeypress="if ((event.keyCode > 32 && event.keyCode < 48) || (event.keyCode > 57 && event.keyCode < 65) || (event.keyCode > 90 && event.keyCode < 97)) event.returnValue = false;"></textarea>
<br>
<br>
홋(겹)따옴표를 입력 할 수 없습니다:<br>
<input type=text name=txtEmail onKeypress="if (event.keyCode==34 || event.keyCode==39) event.returnValue = false;">
<br>
<br>
숫자만 입력가능합니다:<br>
<input type=text name=txtPostalCode onKeypress="if (event.keyCode < 45 || event.keyCode > 57) event.returnValue = false;">
</a></form>
</center>
-------------------------------------------------------------------------------------------------------<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
한글만 입력받기
<script language='javascript'>
function hangul()
{
if((event.keyCode < 12592) || (event.keyCode > 12687))
event.returnValue = false
}
</script>
<input type="text" name="Name" size="10" maxlength="15" class=ad onKeyPress="hangul();">
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
input text 한영 한글/영문 입력 설정
<FORM>
<input style="ime-mode:active;">
<input style="ime-mode:inactive;">
</FORM>
ime-mode:active 이면 한글입력
ime-mode:inactive 이면 영문입력
익스플로러 6에서만 작동
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
한글 전환 모드 안 되게 하기
<input type="text" style="ime-mode:disabled;">
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
한영 한글/영문 전환 버튼
<html>
<head>
<script language="javascript">
<!--
function Kren(form)
{
if(form.test.style.imeMode == "active")
form.test.style.imeMode = "inactive";
else
form.test.style.imeMode = "active";
}
//-->
</script>
</head>
<body>
<form name=form1 action="">
<input type="text" name="test">
<input type="button" onClick="Kren(this.form)" value="한/영전환">
</form>
익스플로러 6이상에서만 작동합니다.
</body>
</html>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
숫자만 입력받기
<script>
function num_only(){
if((event.keyCode<48) || (event.keyCode>57)){
event.returnValue=false;
}
}
</script>
<form name='test'>
<input type=text name='numInputField' OnKeyPress="num_only()" style="ime-mode:disabled">
</form>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
전화번호 포맷으로 숫자만 입력하면 (02)123-3423 이런식으로 바꿔줍니다
<SCRIPT LANGUAGE="JavaScript">
<!--
///
var n;
var p;
var p1;
function ValidatePhone(){
p=p1.value
if(p.length==3){
pp=p;
d4=p.indexOf('(')
d5=p.indexOf(')')
if(d4==-1){
pp="("+pp;
}
if(d5==-1){
pp=pp+")";
}
document.frmPhone.txtphone.value="";
document.frmPhone.txtphone.value=pp;
}
if(p.length>3){
d1=p.indexOf('(')
d2=p.indexOf(')')
if (d2==-1){
l30=p.length;
p30=p.substring(0,4);
p30=p30+")"
p31=p.substring(4,l30);
pp=p30+p31;
document.frmPhone.txtphone.value="";
document.frmPhone.txtphone.value=pp;
}
}
if(p.length>5){
p11=p.substring(d1+1,d2);
if(p11.length>3){
p12=p11;
l12=p12.length;
l15=p.length
p13=p11.substring(0,3);
p14=p11.substring(3,l12);
p15=p.substring(d2+1,l15);
document.frmPhone.txtphone.value="";
pp="("+p13+")"+p14+p15;
document.frmPhone.txtphone.value=pp;
}
l16=p.length;
p16=p.substring(d2+1,l16);
l17=p16.length;
if(l17>3&&p16.indexOf('-')==-1){
p17=p.substring(d2+1,d2+4);
p18=p.substring(d2+4,l16);
p19=p.substring(0,d2+1);
pp=p19+p17+"-"+p18;
document.frmPhone.txtphone.value="";
document.frmPhone.txtphone.value=pp;
}
}
setTimeout(ValidatePhone,100)
}
function getIt(m){
n=m.name;
p1=m
ValidatePhone()
}
function testphone(obj1){
p=obj1.value
p=p.replace("(","")
p=p.replace(")","")
p=p.replace("-","")
p=p.replace("-","")
if (isNaN(p)==true){
alert("Check phone");
return false;
}
}
//-->
</script>
전화번호보단 다른 데 응용하시면 좋을 듯..<br>태그인넷 tagin.net<br>
<form name=frmPhone>
<input type=text name=txtphone maxlength="13" onclick="javascript:getIt(this)" >
</form>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
입력박스 폼안의 숫자 1000단위로 자동 ,콤마 찍어주기
<SCRIPT LANGUAGE="JavaScript">
<!--
function Number_Format(fn){
var str = fn.value;
var Re = /[^0-9]/g;
var ReN = /(-?[0-9]+)([0-9]{3})/;
str = str.replace(Re,'');
while (ReN.test(str)) {
str = str.replace(ReN, "$1,$2");
}
fn.value = str;
}
//-->
</SCRIPT>
<FORM name=fm METHOD=POST ACTION="">
<INPUT TYPE="text" NAME="money" Onkeyup="Number_Format(this)";>
</FORM>
-------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
특수문자 입력금지
<center>
<form onSubmit="return false;">
<a href="http://tagin.net">특수문자를 입력 할 수 없습니다: (예 !@#$%^&* etc)<br>
<textarea rows=2 cols=20 name=comments onKeypress="if ((event.keyCode > 32 && event.keyCode < 48) || (event.keyCode > 57 && event.keyCode < 65) || (event.keyCode > 90 && event.keyCode < 97)) event.returnValue = false;"></textarea>
<br>
<br>
홋(겹)따옴표를 입력 할 수 없습니다:<br>
<input type=text name=txtEmail onKeypress="if (event.keyCode==34 || event.keyCode==39) event.returnValue = false;">
<br>
<br>
숫자만 입력가능합니다:<br>
<input type=text name=txtPostalCode onKeypress="if (event.keyCode < 45 || event.keyCode > 57) event.returnValue = false;">
</a></form>
</center>
-------------------------------------------------------------------------------------------------------<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
댓글 2개
19년 전
감사합니다......
Preware
19년 전
한글만 입력받기는 끝말잇기 게시판에 적용을.. 후후
좋은 팁 감사합니다. ^^
좋은 팁 감사합니다. ^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7730 | 10년 전 | 1299 | ||
| 7729 | 10년 전 | 1115 | ||
| 7728 |
잘살아보자
|
10년 전 | 580 | |
| 7727 |
잘살아보자
|
10년 전 | 473 | |
| 7726 |
잘살아보자
|
10년 전 | 802 | |
| 7725 |
잘살아보자
|
10년 전 | 533 | |
| 7724 |
잘살아보자
|
10년 전 | 444 | |
| 7723 |
잘살아보자
|
10년 전 | 514 | |
| 7722 |
잘살아보자
|
10년 전 | 450 | |
| 7721 |
잘살아보자
|
10년 전 | 489 | |
| 7720 |
잘살아보자
|
10년 전 | 439 | |
| 7719 |
비긴어게인
|
10년 전 | 678 | |
| 7718 |
|
10년 전 | 2515 | |
| 7717 |
잘살아보자
|
10년 전 | 638 | |
| 7716 |
잘살아보자
|
10년 전 | 386 | |
| 7715 |
잘살아보자
|
10년 전 | 420 | |
| 7714 |
잘살아보자
|
10년 전 | 467 | |
| 7713 | 10년 전 | 1771 | ||
| 7712 | 10년 전 | 1696 | ||
| 7711 | 10년 전 | 1078 | ||
| 7710 | 10년 전 | 1370 | ||
| 7709 | 10년 전 | 1499 | ||
| 7708 | 10년 전 | 1448 | ||
| 7707 | 10년 전 | 846 | ||
| 7706 |
별지기천사
|
10년 전 | 560 | |
| 7705 | 10년 전 | 1058 | ||
| 7704 |
ICONdesignstudio
|
10년 전 | 600 | |
| 7703 | 10년 전 | 573 | ||
| 7702 |
|
10년 전 | 706 | |
| 7701 | 10년 전 | 1394 | ||
| 7700 | 10년 전 | 1090 | ||
| 7699 | 10년 전 | 573 | ||
| 7698 | 10년 전 | 1120 | ||
| 7697 | 10년 전 | 5136 | ||
| 7696 | 10년 전 | 633 | ||
| 7695 | 10년 전 | 1672 | ||
| 7694 | 10년 전 | 1041 | ||
| 7693 | 10년 전 | 1538 | ||
| 7692 | 10년 전 | 1274 | ||
| 7691 | 10년 전 | 802 | ||
| 7690 | 10년 전 | 1379 | ||
| 7689 | 10년 전 | 998 | ||
| 7688 | 10년 전 | 592 | ||
| 7687 |
파랑새1597
|
10년 전 | 567 | |
| 7686 | 10년 전 | 826 | ||
| 7685 | 10년 전 | 1330 | ||
| 7684 | 10년 전 | 784 | ||
| 7683 | 10년 전 | 1060 | ||
| 7682 | 10년 전 | 975 | ||
| 7681 | 10년 전 | 636 | ||
| 7680 | 10년 전 | 978 | ||
| 7679 | 10년 전 | 489 | ||
| 7678 | 10년 전 | 715 | ||
| 7677 | 10년 전 | 618 | ||
| 7676 |
|
10년 전 | 933 | |
| 7675 |
|
10년 전 | 1150 | |
| 7674 | 10년 전 | 1038 | ||
| 7673 | 10년 전 | 740 | ||
| 7672 | 10년 전 | 1081 | ||
| 7671 | 10년 전 | 868 | ||
| 7670 | 10년 전 | 637 | ||
| 7669 |
mashmellow
|
10년 전 | 1220 | |
| 7668 | 10년 전 | 701 | ||
| 7667 | 10년 전 | 984 | ||
| 7666 |
senseme
|
10년 전 | 638 | |
| 7665 | 10년 전 | 493 | ||
| 7664 | 10년 전 | 1885 | ||
| 7663 |
mixx애교
|
10년 전 | 973 | |
| 7662 | 10년 전 | 1023 | ||
| 7661 |
hkhkah
|
10년 전 | 779 | |
| 7660 | 10년 전 | 1049 | ||
| 7659 |
커네드커네드
|
10년 전 | 916 | |
| 7658 |
바람돌이팡
|
10년 전 | 658 | |
| 7657 | 10년 전 | 1153 | ||
| 7656 | 10년 전 | 1558 | ||
| 7655 | 10년 전 | 968 | ||
| 7654 |
개발짜증나
|
10년 전 | 846 | |
| 7653 |
네이비칼라
|
10년 전 | 874 | |
| 7652 |
밥먹고합시다
|
10년 전 | 800 | |
| 7651 |
플라이SINJI
|
10년 전 | 1500 | |
| 7650 |
개발짜증나
|
10년 전 | 1395 | |
| 7649 | 10년 전 | 447 | ||
| 7648 |
이미영ㅇㅇ
|
10년 전 | 861 | |
| 7647 | 10년 전 | 419 | ||
| 7646 | 10년 전 | 785 | ||
| 7645 | 10년 전 | 2298 | ||
| 7644 | 10년 전 | 805 | ||
| 7643 |
|
10년 전 | 2859 | |
| 7642 | 10년 전 | 1498 | ||
| 7641 | 10년 전 | 1118 | ||
| 7640 |
개발짜증나
|
10년 전 | 463 | |
| 7639 |
|
10년 전 | 807 | |
| 7638 |
개발짜증나
|
10년 전 | 1122 | |
| 7637 | 10년 전 | 1537 | ||
| 7636 | 10년 전 | 2902 | ||
| 7635 | 10년 전 | 1673 | ||
| 7634 | 10년 전 | 1861 | ||
| 7633 | 10년 전 | 2315 | ||
| 7632 | 10년 전 | 3917 | ||
| 7631 |
|
10년 전 | 1522 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기