function ck_name(name){ 

var bad = ["관리자","어드민","주인장","바보"];  //금지단어 
var ckc = [" ",".","-","/","*","[","]","=","#"];  //금지단어 사이에 입력되는 제거대상 문자  ex)관/리.자 
var position; 

for (i=0; i<ckc.length ; i++) { 
  position = name.indexOf(ckc[i]); 
  while (position != -1){ 
    name = name.replace(ckc[i],""); 
    position = name.indexOf(ckc[i]); 
  } 


for (i=0; i<bad.length ; i++) { 
  if (name.match(bad[i])) { 
    alert(bad[i]+"란 단어는 사용하실수 없습니다."); 
    return; 
  } 


}

출처 : 금지단어



한글을 디코더 해보겠습니다.

한글을 디코더한 결과입니다.다시 인코더해보겠습니다.


처음 결과가 출력됩니다.


밑에 영어 설명인데 나중에 해설할게요^^;
해석되시는분 해석부탁드립니다.

  • Input a string of text and encode or decode it as you like.
  • Handy for turning encoded JavaScript URLs from complete gibberish into readable gibberish.
  • If you'd like to have the URL Decoder/Encoder for offline use, just view source and save to your hard drive.
예~ 출처

Example #1 urlencode() example

<?php
echo '<a href="mycgi?foo='urlencode($userinput), '">';
?>

Example #2 urlencode() and htmlentities() example

<?php
$query_string 
'foo=' urlencode($foo) . '&bar=' urlencode($bar);
echo 
'<a href="mycgi?' htmlentities($query_string) . '">';
?>


'progarm_old > [HTML-JS]' 카테고리의 다른 글

getElementById, getElementsByTagName, getAttribute, setAttribute  (0) 2012.07.11
금지단어 설정하기  (0) 2012.06.21
colgroup 열  (0) 2012.06.05
[HTML] 기본 회원가입때 필요한 소스  (0) 2012.04.18
[HTML_JS] 12.02.09 -  (0) 2012.02.09


<colgroup> 태그는 테이블에있는 하나 이상의 열에 그룹을 지정합니다.

<!DOCTYPE html>

<html>

<body>


<table border="1">

  <colgroup>

    <col span="2" style="background-color:red" />

// 이부분이 span은 테이블의 2열의 색을 말한다. 숫자를 변경하면 숫자열만큼 변경된다.

    <col style="background-color:yellow" />

  </colgroup>

  <tr>

    <th>ISBN</th>

    <th>Title</th>

    <th>Price</th>

  </tr>

  <tr>

    <td>3476896</td>

    <td>My first HTML</td>

    <td>$53</td>

  </tr>

  <tr>

    <td>5869207</td>

    <td>My first CSS</td>

    <td>$49</td>

  </tr>

</table>

</body>

</html>




'progarm_old > [HTML-JS]' 카테고리의 다른 글

금지단어 설정하기  (0) 2012.06.21
urldecode/urlencode 디코더/인코더  (0) 2012.06.05
[HTML] 기본 회원가입때 필요한 소스  (0) 2012.04.18
[HTML_JS] 12.02.09 -  (0) 2012.02.09
[HTML_JS] 12.02.08 - jQurey 3 ,FV  (0) 2012.02.08

+ Recent posts