최근게시물 클릭시 팝업창을 띄우는 방법...
안녕하세요
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년 전
잘 나왔습니다 정말 감사합니다~~(--)(__)
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7330 | 11년 전 | 1674 | ||
| 7329 | 11년 전 | 931 | ||
| 7328 | 11년 전 | 2219 | ||
| 7327 | 11년 전 | 1720 | ||
| 7326 | 11년 전 | 3801 | ||
| 7325 | 11년 전 | 2261 | ||
| 7324 | 11년 전 | 4508 | ||
| 7323 |
호식이와미돌
|
11년 전 | 1278 | |
| 7322 |
호식이와미돌
|
11년 전 | 1137 | |
| 7321 | 11년 전 | 1782 | ||
| 7320 | 11년 전 | 1754 | ||
| 7319 | 11년 전 | 1314 | ||
| 7318 |
|
11년 전 | 965 | |
| 7317 |
멋진남자임
|
11년 전 | 1614 | |
| 7316 |
잘살아보자
|
11년 전 | 983 | |
| 7315 | 11년 전 | 1090 | ||
| 7314 | 11년 전 | 1311 | ||
| 7313 |
잘살아보자
|
11년 전 | 1119 | |
| 7312 | 11년 전 | 875 | ||
| 7311 |
사랑한데이
|
11년 전 | 2058 | |
| 7310 |
잘살아보자
|
11년 전 | 1872 | |
| 7309 |
잘살아보자
|
11년 전 | 3040 | |
| 7308 |
잘살아보자
|
11년 전 | 1015 | |
| 7307 |
잘살아보자
|
11년 전 | 779 | |
| 7306 | 11년 전 | 865 | ||
| 7305 |
잘살아보자
|
11년 전 | 2754 | |
| 7304 | 11년 전 | 1014 | ||
| 7303 | 11년 전 | 1212 | ||
| 7302 | 11년 전 | 722 | ||
| 7301 | 11년 전 | 1504 | ||
| 7300 |
mijaya
|
11년 전 | 1491 | |
| 7299 | 11년 전 | 903 | ||
| 7298 | 11년 전 | 1086 | ||
| 7297 | 11년 전 | 764 | ||
| 7296 | 11년 전 | 722 | ||
| 7295 | 11년 전 | 1551 | ||
| 7294 | 11년 전 | 897 | ||
| 7293 | 11년 전 | 801 | ||
| 7292 | 11년 전 | 904 | ||
| 7291 |
잘살아보자
|
11년 전 | 1089 | |
| 7290 |
잘살아보자
|
11년 전 | 737 | |
| 7289 | 11년 전 | 785 | ||
| 7288 |
잘살아보자
|
11년 전 | 1303 | |
| 7287 | 11년 전 | 823 | ||
| 7286 |
잘살아보자
|
11년 전 | 1322 | |
| 7285 | 11년 전 | 815 | ||
| 7284 | 11년 전 | 981 | ||
| 7283 | 11년 전 | 1007 | ||
| 7282 | 11년 전 | 761 | ||
| 7281 | 11년 전 | 791 | ||
| 7280 | 11년 전 | 1027 | ||
| 7279 | 11년 전 | 1959 | ||
| 7278 | 11년 전 | 795 | ||
| 7277 | 11년 전 | 807 | ||
| 7276 | 11년 전 | 745 | ||
| 7275 | 11년 전 | 1162 | ||
| 7274 | 11년 전 | 808 | ||
| 7273 | 11년 전 | 715 | ||
| 7272 | 11년 전 | 1045 | ||
| 7271 | 11년 전 | 1374 | ||
| 7270 | 11년 전 | 1000 | ||
| 7269 | 11년 전 | 925 | ||
| 7268 | 11년 전 | 970 | ||
| 7267 | 11년 전 | 1803 | ||
| 7266 | 11년 전 | 872 | ||
| 7265 | 11년 전 | 929 | ||
| 7264 |
잘살아보자
|
11년 전 | 2710 | |
| 7263 |
잘살아보자
|
11년 전 | 2253 | |
| 7262 |
잘살아보자
|
11년 전 | 1139 | |
| 7261 |
잘살아보자
|
11년 전 | 1631 | |
| 7260 |
잘살아보자
|
11년 전 | 1244 | |
| 7259 | 11년 전 | 1156 | ||
| 7258 |
잘살아보자
|
11년 전 | 1289 | |
| 7257 |
잘살아보자
|
11년 전 | 1892 | |
| 7256 | 11년 전 | 931 | ||
| 7255 |
그누5입문
|
11년 전 | 1939 | |
| 7254 | 11년 전 | 2161 | ||
| 7253 |
|
11년 전 | 861 | |
| 7252 | 11년 전 | 1002 | ||
| 7251 | 11년 전 | 714 | ||
| 7250 | 11년 전 | 1679 | ||
| 7249 | 11년 전 | 1545 | ||
| 7248 |
sogo87
|
11년 전 | 1032 | |
| 7247 | 11년 전 | 917 | ||
| 7246 | 11년 전 | 696 | ||
| 7245 |
잘살아보자
|
11년 전 | 1069 | |
| 7244 | 11년 전 | 1524 | ||
| 7243 |
presee
|
11년 전 | 591 | |
| 7242 |
sogo87
|
11년 전 | 780 | |
| 7241 | 11년 전 | 863 | ||
| 7240 |
브라이언2
|
11년 전 | 883 | |
| 7239 |
|
11년 전 | 1088 | |
| 7238 | 11년 전 | 2616 | ||
| 7237 |
잘살아보자
|
11년 전 | 2275 | |
| 7236 |
dethos79
|
11년 전 | 1838 | |
| 7235 |
멋진남자임
|
11년 전 | 1401 | |
| 7234 | 11년 전 | 1341 | ||
| 7233 | 11년 전 | 2312 | ||
| 7232 | 11년 전 | 1580 | ||
| 7231 | 11년 전 | 2780 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기