링크를 클릭시 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)");
});
});
게시판 목록
팁게시판
디자인과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5702 |
잘살아보자
|
10년 전 | 419 | |
| 5701 |
잘살아보자
|
10년 전 | 751 | |
| 5700 |
잘살아보자
|
10년 전 | 485 | |
| 5699 |
잘살아보자
|
10년 전 | 394 | |
| 5698 |
잘살아보자
|
10년 전 | 458 | |
| 5697 |
잘살아보자
|
10년 전 | 409 | |
| 5696 |
잘살아보자
|
10년 전 | 438 | |
| 5695 |
잘살아보자
|
10년 전 | 380 | |
| 5694 |
|
10년 전 | 2259 | |
| 5693 |
잘살아보자
|
10년 전 | 595 | |
| 5692 |
잘살아보자
|
10년 전 | 333 | |
| 5691 |
잘살아보자
|
10년 전 | 382 | |
| 5690 |
잘살아보자
|
10년 전 | 406 | |
| 5689 | 10년 전 | 1942 | ||
| 5688 |
|
10년 전 | 1086 | |
| 5687 | 10년 전 | 947 | ||
| 5686 |
|
10년 전 | 1881 | |
| 5685 |
|
10년 전 | 1152 | |
| 5684 | 10년 전 | 903 | ||
| 5683 | 10년 전 | 769 | ||
| 5682 | 10년 전 | 573 | ||
| 5681 | 10년 전 | 1164 | ||
| 5680 | 10년 전 | 904 | ||
| 5679 | 10년 전 | 1383 | ||
| 5678 |
네이비칼라
|
10년 전 | 834 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기