링크를 클릭시 id=A라는 TD에 배경값을 B로 바꾸려합니다..
구현은 어찌저찌해서 짜집기해서 해봤는데 작동이 안됩니다...
<a href="javascript:(A.style.backgroundImage = "url(B)")">
전혀 바뀌질 않습니다..
고수님들 도와주세요 ㅠㅠ
댓글 3개
aequum
13년 전
<script>
function changeImage(id, url) {
var target = document.getElementById(id);
target.style.backgroundImage = "url(" + url +")";
}
</script>
<table>
<tr><td id="test1">#test1</td></tr>
<tr><td id="test2">#test2</td></tr>
</table>
<a href="javascript:changeImage('test1', 'http://www.google.co.kr/logos/2012/newyearsday-2012-res.jpg')">변경 test1</a>
<span style="cursor:pointer" onclick="changeImage('test2', 'http://www.google.co.kr/logos/2012/newyearsday-2012-res.jpg')">변경 test2</span>
----
anchor 태그보다는 span 같은 것 쓰시고 pseudo javascript보다는 event를 쓰시는 것이 좋습니다용.
function changeImage(id, url) {
var target = document.getElementById(id);
target.style.backgroundImage = "url(" + url +")";
}
</script>
<table>
<tr><td id="test1">#test1</td></tr>
<tr><td id="test2">#test2</td></tr>
</table>
<a href="javascript:changeImage('test1', 'http://www.google.co.kr/logos/2012/newyearsday-2012-res.jpg')">변경 test1</a>
<span style="cursor:pointer" onclick="changeImage('test2', 'http://www.google.co.kr/logos/2012/newyearsday-2012-res.jpg')">변경 test2</span>
----
anchor 태그보다는 span 같은 것 쓰시고 pseudo javascript보다는 event를 쓰시는 것이 좋습니다용.
13년 전
감사합니다!! ㅠㅠ
onlymilk74
13년 전
jquery 를 쓰시면
jQuery(document).ready(function(){
jQuery("#A").click(function(){
jQuery(this).css("background-image","url(B)");
});
});
jQuery(document).ready(function(){
jQuery("#A").click(function(){
jQuery(this).css("background-image","url(B)");
});
});
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7530 | 10년 전 | 744 | ||
| 7529 |
파랑새1597
|
10년 전 | 1183 | |
| 7528 |
파랑새1597
|
10년 전 | 1278 | |
| 7527 |
integrity7
|
10년 전 | 1359 | |
| 7526 | 10년 전 | 2392 | ||
| 7525 |
다빈치코드777
|
10년 전 | 1082 | |
| 7524 | 10년 전 | 1550 | ||
| 7523 | 10년 전 | 951 | ||
| 7522 |
|
10년 전 | 972 | |
| 7521 |
blackkil
|
10년 전 | 1843 | |
| 7520 | 10년 전 | 1261 | ||
| 7519 |
Gaumi
|
10년 전 | 1060 | |
| 7518 | 10년 전 | 1469 | ||
| 7517 | 10년 전 | 806 | ||
| 7516 | 10년 전 | 1264 | ||
| 7515 | 10년 전 | 1389 | ||
| 7514 |
|
10년 전 | 4474 | |
| 7513 |
멋진남자임
|
10년 전 | 1126 | |
| 7512 |
다빈치코드777
|
10년 전 | 855 | |
| 7511 |
|
10년 전 | 3379 | |
| 7510 | 10년 전 | 1346 | ||
| 7509 | 10년 전 | 1115 | ||
| 7508 | 10년 전 | 701 | ||
| 7507 |
senseme
|
10년 전 | 717 | |
| 7506 |
멋진남자임
|
10년 전 | 1615 | |
| 7505 | 10년 전 | 3975 | ||
| 7504 | 10년 전 | 2130 | ||
| 7503 | 10년 전 | 978 | ||
| 7502 | 10년 전 | 507 | ||
| 7501 | 10년 전 | 1428 | ||
| 7500 | 10년 전 | 1471 | ||
| 7499 | 10년 전 | 3356 | ||
| 7498 | 10년 전 | 1166 | ||
| 7497 |
dethos79
|
10년 전 | 2949 | |
| 7496 | 10년 전 | 2105 | ||
| 7495 | 10년 전 | 815 | ||
| 7494 |
CHAVO
|
10년 전 | 1099 | |
| 7493 | 10년 전 | 2621 | ||
| 7492 | 10년 전 | 1207 | ||
| 7491 | 10년 전 | 1432 | ||
| 7490 | 10년 전 | 2311 | ||
| 7489 | 10년 전 | 2102 | ||
| 7488 |
toptopon
|
10년 전 | 872 | |
| 7487 |
|
10년 전 | 1015 | |
| 7486 | 10년 전 | 3336 | ||
| 7485 | 10년 전 | 1295 | ||
| 7484 | 10년 전 | 1354 | ||
| 7483 | 10년 전 | 1008 | ||
| 7482 | 10년 전 | 635 | ||
| 7481 | 10년 전 | 850 | ||
| 7480 | 10년 전 | 1209 | ||
| 7479 | 10년 전 | 2578 | ||
| 7478 | 10년 전 | 1131 | ||
| 7477 |
멋진남자임
|
10년 전 | 1479 | |
| 7476 |
zeppeto
|
10년 전 | 1132 | |
| 7475 |
200점아빠
|
10년 전 | 905 | |
| 7474 | 10년 전 | 3995 | ||
| 7473 | 10년 전 | 971 | ||
| 7472 |
나르시스1
|
10년 전 | 1211 | |
| 7471 | 10년 전 | 866 | ||
| 7470 | 10년 전 | 1258 | ||
| 7469 |
플라이SINJI
|
10년 전 | 931 | |
| 7468 |
|
10년 전 | 517 | |
| 7467 |
|
10년 전 | 631 | |
| 7466 | 10년 전 | 1092 | ||
| 7465 | 10년 전 | 1164 | ||
| 7464 |
|
10년 전 | 1173 | |
| 7463 | 10년 전 | 1221 | ||
| 7462 |
진짜별사탕
|
10년 전 | 836 | |
| 7461 | 10년 전 | 922 | ||
| 7460 | 10년 전 | 3704 | ||
| 7459 |
멋진남자임
|
10년 전 | 1536 | |
| 7458 |
멋진남자임
|
10년 전 | 473 | |
| 7457 | 10년 전 | 905 | ||
| 7456 | 10년 전 | 747 | ||
| 7455 | 10년 전 | 2128 | ||
| 7454 | 10년 전 | 617 | ||
| 7453 | 10년 전 | 801 | ||
| 7452 |
중국어사이트제작
|
10년 전 | 498 | |
| 7451 | 10년 전 | 892 | ||
| 7450 | 10년 전 | 616 | ||
| 7449 |
울라라라우
|
10년 전 | 924 | |
| 7448 | 10년 전 | 1624 | ||
| 7447 |
멋진남자임
|
10년 전 | 480 | |
| 7446 | 10년 전 | 524 | ||
| 7445 |
네이비칼라
|
10년 전 | 1645 | |
| 7444 |
senseme
|
10년 전 | 1386 | |
| 7443 | 10년 전 | 1321 | ||
| 7442 | 10년 전 | 701 | ||
| 7441 |
멋진남자임
|
10년 전 | 1419 | |
| 7440 | 10년 전 | 876 | ||
| 7439 |
|
10년 전 | 735 | |
| 7438 |
|
10년 전 | 911 | |
| 7437 |
basement
|
10년 전 | 1019 | |
| 7436 |
잘살아보자
|
10년 전 | 1106 | |
| 7435 | 10년 전 | 1053 | ||
| 7434 | 10년 전 | 3778 | ||
| 7433 |
|
10년 전 | 2715 | |
| 7432 |
alexkim
|
10년 전 | 841 | |
| 7431 |
이웃집초보
|
10년 전 | 1291 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기