Page 1 of 1

""이 먹히질 않습니다.

Posted: 2006 02 02 20:35 53
by Tyburn
제 홈페이의 웹 표준을 준수하기 위해서 노력을 해서 에러를 계속 줄여나가는데 여기서 막힙니다.

span class=key1 라는 곳에서 ""가 없더군요.

그래서 제 테터툴즈 소스 파일(php파일)을 열어서 해당 부분에 ""를 달아주었더니 PHP에러가 출력됩니다.

달자니 에러나고, 안달자니 표준을 위반하게 되고... 어떻게 해야 할지 모르겠네요.

해당 부분은

if ($pos1 <= $pos2) $cont_buf .= "<span class=key1 onclick=keyword_open('".$r_root_path."kview.php?kd=".urlencode($word)."')>".$word."</span>";

입니다.

방법이 없을까요?

이렇게 하시면되요.

Posted: 2006 02 02 21:04 09
by loveisfunny
$cont_buf .= "<span class=key1 onclick=keyword_open('".$r_root_path."kview.php?kd=".urlencode($word)."')>".$word."</span>";
<span class = \"key1\" ... > 이렇게 하시면 됩니다.

감사합니다.

Posted: 2006 02 02 22:00 08
by Tyburn
많은 도움이 되었습니다.
감사합니다.

Re: ""이 먹히질 않습니다.

Posted: 2006 02 03 10:01 46
by eouia
Tyburn wrote:
if ($pos1 <= $pos2) $cont_buf .= "<span class=key1 onclick=keyword_open('".$r_root_path."kview.php?kd=".urlencode($word)."')>".$word."</span>";
if ($pos1 <= $pos2) $cont_buf .= "<span class="key1" onclick="keyword_open('".$r_root_path."kview.php?kd=".urlencode($word)."')">".$word."</span>";