최근게시물 클릭시 팝업창을 띄우는 방법...
안녕하세요
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년 전
잘 나왔습니다 정말 감사합니다~~(--)(__)
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7930 | 9년 전 | 451 | ||
| 7929 | 9년 전 | 382 | ||
| 7928 | 9년 전 | 463 | ||
| 7927 | 9년 전 | 377 | ||
| 7926 | 9년 전 | 686 | ||
| 7925 | 9년 전 | 401 | ||
| 7924 | 9년 전 | 383 | ||
| 7923 | 9년 전 | 377 | ||
| 7922 | 9년 전 | 412 | ||
| 7921 | 9년 전 | 428 | ||
| 7920 | 9년 전 | 342 | ||
| 7919 | 9년 전 | 351 | ||
| 7918 | 9년 전 | 504 | ||
| 7917 | 9년 전 | 354 | ||
| 7916 | 9년 전 | 443 | ||
| 7915 | 9년 전 | 451 | ||
| 7914 | 9년 전 | 461 | ||
| 7913 | 9년 전 | 631 | ||
| 7912 | 9년 전 | 463 | ||
| 7911 | 9년 전 | 396 | ||
| 7910 | 9년 전 | 443 | ||
| 7909 | 9년 전 | 549 | ||
| 7908 | 9년 전 | 485 | ||
| 7907 | 9년 전 | 424 | ||
| 7906 | 9년 전 | 443 | ||
| 7905 | 9년 전 | 408 | ||
| 7904 | 9년 전 | 397 | ||
| 7903 | 9년 전 | 395 | ||
| 7902 | 9년 전 | 589 | ||
| 7901 |
|
9년 전 | 765 | |
| 7900 | 9년 전 | 644 | ||
| 7899 | 9년 전 | 429 | ||
| 7898 | 9년 전 | 427 | ||
| 7897 | 9년 전 | 386 | ||
| 7896 | 9년 전 | 397 | ||
| 7895 | 9년 전 | 514 | ||
| 7894 | 9년 전 | 431 | ||
| 7893 | 9년 전 | 402 | ||
| 7892 | 9년 전 | 441 | ||
| 7891 | 9년 전 | 801 | ||
| 7890 | 9년 전 | 1228 | ||
| 7889 | 9년 전 | 764 | ||
| 7888 |
limsy1987
|
9년 전 | 574 | |
| 7887 | 9년 전 | 607 | ||
| 7886 | 9년 전 | 493 | ||
| 7885 | 9년 전 | 460 | ||
| 7884 | 9년 전 | 456 | ||
| 7883 | 9년 전 | 459 | ||
| 7882 | 9년 전 | 518 | ||
| 7881 | 9년 전 | 491 | ||
| 7880 | 9년 전 | 614 | ||
| 7879 | 9년 전 | 500 | ||
| 7878 | 9년 전 | 1275 | ||
| 7877 | 9년 전 | 803 | ||
| 7876 | 9년 전 | 538 | ||
| 7875 | 9년 전 | 614 | ||
| 7874 |
|
9년 전 | 827 | |
| 7873 | 9년 전 | 546 | ||
| 7872 | 9년 전 | 712 | ||
| 7871 | 9년 전 | 529 | ||
| 7870 | 9년 전 | 647 | ||
| 7869 | 9년 전 | 461 | ||
| 7868 | 9년 전 | 502 | ||
| 7867 | 9년 전 | 499 | ||
| 7866 | 9년 전 | 555 | ||
| 7865 | 9년 전 | 491 | ||
| 7864 | 9년 전 | 557 | ||
| 7863 | 9년 전 | 552 | ||
| 7862 | 9년 전 | 514 | ||
| 7861 | 9년 전 | 687 | ||
| 7860 | 9년 전 | 662 | ||
| 7859 | 9년 전 | 442 | ||
| 7858 | 9년 전 | 743 | ||
| 7857 | 9년 전 | 1133 | ||
| 7856 | 9년 전 | 564 | ||
| 7855 | 9년 전 | 796 | ||
| 7854 | 9년 전 | 753 | ||
| 7853 | 9년 전 | 642 | ||
| 7852 | 9년 전 | 563 | ||
| 7851 | 9년 전 | 552 | ||
| 7850 | 9년 전 | 631 | ||
| 7849 | 9년 전 | 399 | ||
| 7848 | 9년 전 | 464 | ||
| 7847 | 9년 전 | 707 | ||
| 7846 | 9년 전 | 493 | ||
| 7845 | 9년 전 | 466 | ||
| 7844 | 9년 전 | 436 | ||
| 7843 | 9년 전 | 472 | ||
| 7842 | 9년 전 | 451 | ||
| 7841 | 9년 전 | 428 | ||
| 7840 | 9년 전 | 440 | ||
| 7839 | 9년 전 | 482 | ||
| 7838 | 10년 전 | 549 | ||
| 7837 | 10년 전 | 382 | ||
| 7836 | 10년 전 | 438 | ||
| 7835 | 10년 전 | 515 | ||
| 7834 |
|
10년 전 | 1225 | |
| 7833 | 10년 전 | 484 | ||
| 7832 | 10년 전 | 460 | ||
| 7831 | 10년 전 | 620 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기