최근게시물 클릭시 팝업창을 띄우는 방법...
안녕하세요
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년 전
잘 나왔습니다 정말 감사합니다~~(--)(__)
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7830 | 9년 전 | 376 | ||
| 7829 |
|
9년 전 | 553 | |
| 7828 | 9년 전 | 487 | ||
| 7827 | 9년 전 | 372 | ||
| 7826 | 9년 전 | 381 | ||
| 7825 | 9년 전 | 434 | ||
| 7824 | 9년 전 | 417 | ||
| 7823 | 9년 전 | 321 | ||
| 7822 | 9년 전 | 316 | ||
| 7821 | 9년 전 | 262 | ||
| 7820 | 9년 전 | 316 | ||
| 7819 |
|
9년 전 | 718 | |
| 7818 | 10년 전 | 335 | ||
| 7817 | 10년 전 | 452 | ||
| 7816 | 10년 전 | 355 | ||
| 7815 | 10년 전 | 560 | ||
| 7814 | 10년 전 | 382 | ||
| 7813 | 10년 전 | 321 | ||
| 7812 | 10년 전 | 345 | ||
| 7811 | 10년 전 | 362 | ||
| 7810 | 10년 전 | 492 | ||
| 7809 | 10년 전 | 434 | ||
| 7808 | 10년 전 | 295 | ||
| 7807 | 10년 전 | 357 | ||
| 7806 |
프로그래머7
|
10년 전 | 1307 | |
| 7805 | 10년 전 | 1217 | ||
| 7804 |
zahir1312
|
10년 전 | 742 | |
| 7803 |
|
10년 전 | 1344 | |
| 7802 | 10년 전 | 400 | ||
| 7801 | 10년 전 | 829 | ||
| 7800 | 10년 전 | 1046 | ||
| 7799 | 10년 전 | 503 | ||
| 7798 | 10년 전 | 451 | ||
| 7797 | 10년 전 | 451 | ||
| 7796 | 10년 전 | 301 | ||
| 7795 | 10년 전 | 454 | ||
| 7794 | 10년 전 | 477 | ||
| 7793 | 10년 전 | 997 | ||
| 7792 | 10년 전 | 405 | ||
| 7791 | 10년 전 | 489 | ||
| 7790 | 10년 전 | 453 | ||
| 7789 |
fbastore
|
10년 전 | 1403 | |
| 7788 | 10년 전 | 486 | ||
| 7787 | 10년 전 | 351 | ||
| 7786 | 10년 전 | 503 | ||
| 7785 | 10년 전 | 521 | ||
| 7784 | 10년 전 | 590 | ||
| 7783 | 10년 전 | 391 | ||
| 7782 | 10년 전 | 446 | ||
| 7781 | 10년 전 | 847 | ||
| 7780 | 10년 전 | 776 | ||
| 7779 | 10년 전 | 746 | ||
| 7778 | 10년 전 | 316 | ||
| 7777 | 10년 전 | 398 | ||
| 7776 | 10년 전 | 402 | ||
| 7775 | 10년 전 | 339 | ||
| 7774 | 10년 전 | 600 | ||
| 7773 | 10년 전 | 322 | ||
| 7772 | 10년 전 | 666 | ||
| 7771 | 10년 전 | 326 | ||
| 7770 | 10년 전 | 612 | ||
| 7769 | 10년 전 | 329 | ||
| 7768 | 10년 전 | 547 | ||
| 7767 | 10년 전 | 1115 | ||
| 7766 | 10년 전 | 444 | ||
| 7765 | 10년 전 | 476 | ||
| 7764 |
잘살아보자
|
10년 전 | 325 | |
| 7763 |
|
10년 전 | 1400 | |
| 7762 |
Tosea
|
10년 전 | 1018 | |
| 7761 | 10년 전 | 614 | ||
| 7760 |
잘살아보자
|
10년 전 | 601 | |
| 7759 |
잘살아보자
|
10년 전 | 415 | |
| 7758 |
잘살아보자
|
10년 전 | 531 | |
| 7757 | 10년 전 | 1179 | ||
| 7756 |
ITBANK
|
10년 전 | 1217 | |
| 7755 | 10년 전 | 1893 | ||
| 7754 | 10년 전 | 997 | ||
| 7753 | 10년 전 | 842 | ||
| 7752 | 10년 전 | 1348 | ||
| 7751 |
잘살아보자
|
10년 전 | 470 | |
| 7750 |
잘살아보자
|
10년 전 | 440 | |
| 7749 |
잘살아보자
|
10년 전 | 437 | |
| 7748 |
잘살아보자
|
10년 전 | 419 | |
| 7747 |
잘살아보자
|
10년 전 | 508 | |
| 7746 |
잘살아보자
|
10년 전 | 631 | |
| 7745 |
잘살아보자
|
10년 전 | 875 | |
| 7744 |
잘살아보자
|
10년 전 | 386 | |
| 7743 | 10년 전 | 912 | ||
| 7742 |
starbros
|
10년 전 | 785 | |
| 7741 |
잘살아보자
|
10년 전 | 603 | |
| 7740 |
잘살아보자
|
10년 전 | 478 | |
| 7739 |
잘살아보자
|
10년 전 | 432 | |
| 7738 |
잘살아보자
|
10년 전 | 488 | |
| 7737 |
잘살아보자
|
10년 전 | 445 | |
| 7736 |
잘살아보자
|
10년 전 | 466 | |
| 7735 |
잘살아보자
|
10년 전 | 800 | |
| 7734 |
잘살아보자
|
10년 전 | 391 | |
| 7733 |
잘살아보자
|
10년 전 | 491 | |
| 7732 |
잘살아보자
|
10년 전 | 649 | |
| 7731 |
잘살아보자
|
10년 전 | 577 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기