한국어
<!-- http://www.downcodes.com/js --> <!-- bbs http://www.downcodes.com/bbs--> <!--加入到head代码 --> 加入到head区的代码: <style type="text/css"> .textstyle{ 글꼴: 굵은 12px Verdana; 줄 높이: 1.5; } .formstyle{ 배경색: #E1E1E1; } </style> <script type="text/javascript"> var Contact=new Array() //텍스트와 해당 이메일 주소를 지정합니다. //"@", "." 대신 [at], [dot]을 사용합니다. 스팸 방지 목적: Contact[0]=["Chris Timber", "chris[at]whatever[dot]com"] Contact[1]=["John Doe", "johndoe[at]whatever2[dot]com" ] Contact[2]=["Jannet Low", "janet[at]whatever3[dot]com"] contact[3]=["Albert Good", "albertgood[at]whatever4[dot]com"] //지정 SELECT 메뉴 내에 표시할 캡션 텍스트입니다. 양식 옵션을 사용하는 경우에만 적용 가능: var dropmenucaption="CONTACT US FORM " function displaycontact(emailarray, cssclass, displaymethod, extrainfo){ if (displaymethod=="text"){ document.write('<span class= "' + cssclass + '">n') if (typeof emailarray[0]=="object"){ //전달된 배열이 여러 요소로 구성된 경우 for (i=0; i<emailarray.length; i++){ var seperator=(i<emailarray.length-1)? extrainfo : "" document.write('<a href="mailto:' + 수정email(emailarray[i][1])+ '">'+ emailarray[i][0] + '</a>' + 구분 기호 ) } } else //단일 배열 요소인 경우 document.write('<a href="mailto:' + 수정email(emailarray[1])+ '">'+ emailarray[0] + '</a >') document.write('</span>') } else if (displaymethod=="form"){ document.write('<form>n') document.write('<select size="' + extrainfo + '" onChange="jumptooption(this)" class="' + cssclass + '">n') document.write('<option value="caption">' + dropmenucaption + '</option>n ') for (i=0; i<emailarray.length; i++) document.write('<option value="mailto:' + Modifyemail(emailarray[i][1]) +'">' + emailarray[i] [0] + ' </option>n') document.write('</select></form>n') } } 함수 수정email(emailitem){ var Modified=emailitem.replace(/[at] /gi, "@") 수정됨=modified.replace(/[dot]/gi, ".") 수정됨 반환 } function jumptoption(themenu){ if (themenu.options[themenu.selectedIndex].value !="caption ") 위치=themenu.options[themenu.selectedIndex].value } //사용 지침. displaycontact(1번째 매개변수, "2번째 매개변수", "3번째 매개변수", "4번째 매개변수") //1번째 매개변수: 이메일 주소 목록을 포함하는 배열의 이름을 입력합니다. 하나의 이메일을 표시하려면 해당 배열 요소를 입력하세요. //2번째 파라미터: 적용할 CSS 클래스명을 입력합니다. 없음의 경우 임의의 이름을 입력하십시오. //3번째 매개변수: "form" 또는 "text"를 입력합니다. 전자는 드롭다운 메뉴에 이메일을 표시합니다. 나중에 일반 텍스트로. "텍스트" 모드만 단일 이메일 주소 표시를 지원합니다! //4번째 매개변수: "form" 모드인 경우 <SELECT> 태그의 높이를 제어하는 정수를 입력합니다. "텍스트" 모드인 경우 각 이메일 텍스트 사이를 구분하는 문자열을 입력하세요. 예: "|", "<br>" 등 //샘플 사용법(아래 주석을 해제하여 확인) //displaycontact(contacts, "textstyle", "text", " | ") //displaycontact(contacts, "formstyle" , "form", "1") //displaycontact(contacts[2], "textstyle", "text", "") </script> <!--body的代码:--> <script type="text /javascript"> //높이가 "1"인 드롭다운 메뉴를 사용하여 이메일을 표시합니다. displaycontact(contacts, "formstyle", "form", "1") //"<br>"로 구분된 일반 텍스트 링크를 사용하여 이메일을 표시합니다. (contacts, "textstyle", "text", "<br>") //배열에서 단일 이메일 주소 Contact[2] 표시 displaycontact(contacts[2], "textstyle", "text", "") </ 스크립트> <br><br><br> <p><font color=red>//网站:http://www.downcodes.com</font></p>