최근게시물 클릭시 팝업창을 띄우는 방법...
안녕하세요
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년 전
잘 나왔습니다 정말 감사합니다~~(--)(__)
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 635 | ||
| 7629 |
|
10년 전 | 2346 | |
| 7628 | 10년 전 | 768 | ||
| 7627 |
|
10년 전 | 1001 | |
| 7626 |
|
10년 전 | 1759 | |
| 7625 | 10년 전 | 660 | ||
| 7624 | 10년 전 | 683 | ||
| 7623 |
|
10년 전 | 3008 | |
| 7622 | 10년 전 | 696 | ||
| 7621 |
leeleeleelee
|
10년 전 | 569 | |
| 7620 | 10년 전 | 528 | ||
| 7619 | 10년 전 | 457 | ||
| 7618 | 10년 전 | 997 | ||
| 7617 | 10년 전 | 713 | ||
| 7616 | 10년 전 | 613 | ||
| 7615 | 10년 전 | 711 | ||
| 7614 | 10년 전 | 1213 | ||
| 7613 |
|
10년 전 | 2052 | |
| 7612 | 10년 전 | 1124 | ||
| 7611 | 10년 전 | 1385 | ||
| 7610 |
|
10년 전 | 1874 | |
| 7609 |
|
10년 전 | 1290 | |
| 7608 |
mwdkim
|
10년 전 | 1097 | |
| 7607 |
|
10년 전 | 1022 | |
| 7606 |
mwdkim
|
10년 전 | 3903 | |
| 7605 | 10년 전 | 669 | ||
| 7604 | 10년 전 | 1005 | ||
| 7603 | 10년 전 | 1629 | ||
| 7602 |
|
10년 전 | 1041 | |
| 7601 |
AniNest
|
10년 전 | 2762 | |
| 7600 |
port443
|
10년 전 | 999 | |
| 7599 | 10년 전 | 924 | ||
| 7598 | 10년 전 | 991 | ||
| 7597 | 10년 전 | 4553 | ||
| 7596 |
SeungYeon
|
10년 전 | 868 | |
| 7595 |
untitled
|
10년 전 | 2394 | |
| 7594 |
프로그래머7
|
10년 전 | 1700 | |
| 7593 |
untitled
|
10년 전 | 2337 | |
| 7592 |
untitled
|
10년 전 | 1915 | |
| 7591 |
untitled
|
10년 전 | 2652 | |
| 7590 |
아리마2001
|
10년 전 | 823 | |
| 7589 | 10년 전 | 1082 | ||
| 7588 |
|
10년 전 | 2901 | |
| 7587 | 10년 전 | 1278 | ||
| 7586 | 10년 전 | 641 | ||
| 7585 | 10년 전 | 1661 | ||
| 7584 | 10년 전 | 1395 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1137 | |
| 7582 |
|
10년 전 | 1073 | |
| 7581 | 10년 전 | 1303 | ||
| 7580 | 10년 전 | 946 | ||
| 7579 |
|
10년 전 | 584 | |
| 7578 | 10년 전 | 1398 | ||
| 7577 |
|
10년 전 | 1853 | |
| 7576 | 10년 전 | 1368 | ||
| 7575 |
멋진남자임
|
10년 전 | 1447 | |
| 7574 | 10년 전 | 2088 | ||
| 7573 | 10년 전 | 3220 | ||
| 7572 | 10년 전 | 749 | ||
| 7571 |
|
10년 전 | 771 | |
| 7570 |
|
10년 전 | 1295 | |
| 7569 | 10년 전 | 1524 | ||
| 7568 |
this1mg
|
10년 전 | 1023 | |
| 7567 |
|
10년 전 | 733 | |
| 7566 | 10년 전 | 901 | ||
| 7565 |
Angel하늘
|
10년 전 | 966 | |
| 7564 |
seoldi
|
10년 전 | 1207 | |
| 7563 |
|
10년 전 | 1352 | |
| 7562 |
멋진남자임
|
10년 전 | 2046 | |
| 7561 | 10년 전 | 684 | ||
| 7560 |
leeleeleelee
|
10년 전 | 882 | |
| 7559 | 10년 전 | 5014 | ||
| 7558 |
RinaP
|
10년 전 | 755 | |
| 7557 |
|
10년 전 | 1222 | |
| 7556 | 10년 전 | 1172 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1635 | |
| 7554 | 10년 전 | 1076 | ||
| 7553 |
senseme
|
10년 전 | 1322 | |
| 7552 |
ehdltdoit
|
10년 전 | 1418 | |
| 7551 |
|
10년 전 | 1801 | |
| 7550 |
leeleeleelee
|
10년 전 | 1565 | |
| 7549 | 10년 전 | 2395 | ||
| 7548 | 10년 전 | 1815 | ||
| 7547 |
멋진남자임
|
10년 전 | 1928 | |
| 7546 | 10년 전 | 970 | ||
| 7545 |
ILMare1003
|
10년 전 | 1258 | |
| 7544 |
|
10년 전 | 1211 | |
| 7543 | 10년 전 | 864 | ||
| 7542 | 10년 전 | 636 | ||
| 7541 |
울라라라우
|
10년 전 | 850 | |
| 7540 | 10년 전 | 1583 | ||
| 7539 | 10년 전 | 904 | ||
| 7538 |
|
10년 전 | 1816 | |
| 7537 | 10년 전 | 3591 | ||
| 7536 |
Gaumi
|
10년 전 | 1389 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1246 | |
| 7534 |
senseme
|
10년 전 | 1195 | |
| 7533 | 10년 전 | 1172 | ||
| 7532 | 10년 전 | 836 | ||
| 7531 | 10년 전 | 2029 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기