최근게시물 클릭시 팝업창을 띄우는 방법...
안녕하세요
PHP에 대해 질문이 있습니다.
메인에 있는 최근 글(공지사항)을 클릭시 공지사항 페이지로 들어가지 않고
그냥 팝업을 띄우는 소스를 만들어봤는데..잘 안되었습니다.ㅠㅠ
어떻게 됩니까?
----------------------------------------------------------------
<!--클릭할때 새창을 나오는 자바스크립트-->
<script language="JavaScript">
<!--
<!--
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
toolbar_str = toolbar ? 'yes' : 'no';
menubar_str = menubar ? 'yes' : 'no';
statusbar_str = statusbar ? 'yes' : 'no';
scrollbar_str = scrollbar ? 'yes' : 'yes';
resizable_str = resizable ? 'yes' : 'no';
window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
// -->
</script>
<!--클릭할때 새창을 나오는 자바스크립트-->
<script language="JavaScript">
<!--
<!--
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
toolbar_str = toolbar ? 'yes' : 'no';
menubar_str = menubar ? 'yes' : 'no';
statusbar_str = statusbar ? 'yes' : 'no';
scrollbar_str = scrollbar ? 'yes' : 'yes';
resizable_str = resizable ? 'yes' : 'no';
window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
// -->
</script>
...
...
...
...
...
...
...
<?
$my_content =htmlspecialchars($row_sch["content"]); //제목 HTML 치환
if(strlen($my_content)<1) $my_content = "No content"; //빈제목 치환
if(strlen($my_content)<1) $my_content = "No content"; //빈제목 치환
if($_GET["schword"]){ // 검색어 치환하기
$arr_find_value = explode(",",$_GET["schword"]);
for($j=0;$j<count($arr_find_value);$j++){
$my_content = eregi_replace("(\\$arr_find_value[$j])", "<font color='#FF0066'>\\1</font>", $my_content);
}
}
$arr_find_value = explode(",",$_GET["schword"]);
for($j=0;$j<count($arr_find_value);$j++){
$my_content = eregi_replace("(\\$arr_find_value[$j])", "<font color='#FF0066'>\\1</font>", $my_content);
}
}
// 메인에 있는 최근 글(공지사항)을 클릭하면 공지사항 페이지로 가는것
$my_content = $my_content;
$my_content = encode_substr($my_content,0,200,"EUR-KR");
echo "<a href='supp_view.php?wr=jw&uid=".$row_sch["uid"]."&start=$start$etc_key' onfocus='this.blur();'>$my_content</a>";
에
// 메인에 있는 최근 글(공지사항)을 클릭하면 공지사항 팝업으로 나오는 것
$my_content = $my_content;
$my_content = encode_substr($my_content,0,200,"EUR-KR");
echo "<a href='javascript:na_open_window('win', 'supp_view.php?wr=jw&uid=".$row_sch["uid"]."&start=$start$etc_key' onfocus='this.blur();', 350, 200, 573, 500, 0, 0, 0, 0, 0)'>$my_content</a>";
으로 수정해보니 잘 안되었는데요..
$my_content = $my_content;
$my_content = encode_substr($my_content,0,200,"EUR-KR");
echo "<a href='javascript:na_open_window('win', 'supp_view.php?wr=jw&uid=".$row_sch["uid"]."&start=$start$etc_key' onfocus='this.blur();', 350, 200, 573, 500, 0, 0, 0, 0, 0)'>$my_content</a>";
으로 수정해보니 잘 안되었는데요..
...
무엇때문에 에러났습니까?ㅠㅠ
도와주세요
도와주세요
댓글 2개
13년 전
echo "<a href='javascript:na_open_window(\"win\",\"supp_view.php?wr=jw&uid=".$row_sch["uid"]."&start=$start$etc_key\", 350, 200, 573, 500, 0, 0, 0, 0, 0)' onfocus='this.blur();'>$my_content</a>";
onfocus 부분은 na_open_window 함수의 인자가 아니므로 빼고,
중첩되는 맨 안쪽의 ' 는 \"으로 바꿔봤습니다. ^^
onfocus 부분은 na_open_window 함수의 인자가 아니므로 빼고,
중첩되는 맨 안쪽의 ' 는 \"으로 바꿔봤습니다. ^^
와우맨OLD
13년 전
잘 나왔습니다 정말 감사합니다~~(--)(__)
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 141 | ||
| 8229 | 9년 전 | 125 | ||
| 8228 |
커네드커네드
|
9년 전 | 164 | |
| 8227 | 9년 전 | 210 | ||
| 8226 | 9년 전 | 225 | ||
| 8225 | 9년 전 | 205 | ||
| 8224 | 9년 전 | 210 | ||
| 8223 | 9년 전 | 177 | ||
| 8222 |
|
9년 전 | 252 | |
| 8221 | 9년 전 | 161 | ||
| 8220 | 9년 전 | 190 | ||
| 8219 | 9년 전 | 160 | ||
| 8218 | 9년 전 | 196 | ||
| 8217 |
star3840
|
9년 전 | 170 | |
| 8216 | 9년 전 | 241 | ||
| 8215 | 9년 전 | 184 | ||
| 8214 | 9년 전 | 292 | ||
| 8213 | 9년 전 | 250 | ||
| 8212 | 9년 전 | 159 | ||
| 8211 | 9년 전 | 336 | ||
| 8210 | 9년 전 | 336 | ||
| 8209 | 9년 전 | 408 | ||
| 8208 | 9년 전 | 300 | ||
| 8207 | 9년 전 | 303 | ||
| 8206 |
|
9년 전 | 257 | |
| 8205 | 9년 전 | 239 | ||
| 8204 | 9년 전 | 215 | ||
| 8203 | 9년 전 | 286 | ||
| 8202 | 9년 전 | 204 | ||
| 8201 | 9년 전 | 251 | ||
| 8200 | 9년 전 | 257 | ||
| 8199 | 9년 전 | 270 | ||
| 8198 | 9년 전 | 235 | ||
| 8197 | 9년 전 | 225 | ||
| 8196 | 9년 전 | 636 | ||
| 8195 | 9년 전 | 237 | ||
| 8194 | 9년 전 | 350 | ||
| 8193 | 9년 전 | 250 | ||
| 8192 | 9년 전 | 267 | ||
| 8191 | 9년 전 | 216 | ||
| 8190 | 9년 전 | 212 | ||
| 8189 | 9년 전 | 273 | ||
| 8188 | 9년 전 | 206 | ||
| 8187 | 9년 전 | 210 | ||
| 8186 | 9년 전 | 212 | ||
| 8185 | 9년 전 | 376 | ||
| 8184 | 9년 전 | 166 | ||
| 8183 | 9년 전 | 389 | ||
| 8182 | 9년 전 | 248 | ||
| 8181 | 9년 전 | 197 | ||
| 8180 | 9년 전 | 778 | ||
| 8179 | 9년 전 | 549 | ||
| 8178 | 9년 전 | 405 | ||
| 8177 |
kiplayer
|
9년 전 | 403 | |
| 8176 | 9년 전 | 435 | ||
| 8175 | 9년 전 | 326 | ||
| 8174 | 9년 전 | 319 | ||
| 8173 | 9년 전 | 405 | ||
| 8172 | 9년 전 | 287 | ||
| 8171 | 9년 전 | 249 | ||
| 8170 | 9년 전 | 370 | ||
| 8169 |
커네드커네드
|
9년 전 | 320 | |
| 8168 | 9년 전 | 404 | ||
| 8167 | 9년 전 | 395 | ||
| 8166 | 9년 전 | 294 | ||
| 8165 | 9년 전 | 241 | ||
| 8164 | 9년 전 | 369 | ||
| 8163 | 9년 전 | 367 | ||
| 8162 | 9년 전 | 367 | ||
| 8161 | 9년 전 | 383 | ||
| 8160 |
|
9년 전 | 583 | |
| 8159 | 9년 전 | 526 | ||
| 8158 | 9년 전 | 330 | ||
| 8157 | 9년 전 | 439 | ||
| 8156 | 9년 전 | 327 | ||
| 8155 | 9년 전 | 320 | ||
| 8154 |
00년생용띠
|
9년 전 | 658 | |
| 8153 | 9년 전 | 301 | ||
| 8152 |
|
9년 전 | 482 | |
| 8151 | 9년 전 | 478 | ||
| 8150 | 9년 전 | 584 | ||
| 8149 |
Jangfolk
|
9년 전 | 440 | |
| 8148 | 9년 전 | 256 | ||
| 8147 | 9년 전 | 447 | ||
| 8146 | 9년 전 | 530 | ||
| 8145 | 9년 전 | 479 | ||
| 8144 | 9년 전 | 444 | ||
| 8143 | 9년 전 | 281 | ||
| 8142 | 9년 전 | 490 | ||
| 8141 | 9년 전 | 441 | ||
| 8140 | 9년 전 | 997 | ||
| 8139 | 9년 전 | 349 | ||
| 8138 |
전갈자리남자
|
9년 전 | 454 | |
| 8137 | 9년 전 | 495 | ||
| 8136 | 9년 전 | 813 | ||
| 8135 |
|
9년 전 | 858 | |
| 8134 |
PlayPixel
|
9년 전 | 597 | |
| 8133 |
|
9년 전 | 508 | |
| 8132 | 9년 전 | 543 | ||
| 8131 | 9년 전 | 900 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기