- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[JavaScript] CSS cursor is not working on dynamically added map tag 본문
★─Programing/☆─WebProgram
[JavaScript] CSS cursor is not working on dynamically added map tag
드럼치는한동이 2016. 7. 28. 09:10See this answer if you are using chrome or Safari. Cursor not changing to pointer in Usemap/area case
I will add that your code is too complicated. You dont have to add style
, id
, shape
and so on as attributes (attr.value = "cursor:pointer";
will probably never work at all). The code below works fine, results in a nice 1,1,100,100 map with cursor as pointer. But again works only in browsers like Opera and Firefox, but NOT in Chrome or Safari (WebKit).
var body=document.getElementsByTagName('body')[0];
var img = document.createElement("IMG");
img.src='1.gif';
img.useMap='#album_map';
var map = document.createElement("MAP");
map.id="album_map";
map.style.cursor="pointer"; //the right way
var area = document.createElement("AREA");
area.shape='rect';
area.coords="1, 1, 100, 100";
map.appendChild(area);
body.appendChild(map);
body.appendChild(img);
adding standard events :
bind predefined function :
function imgClick() {
alert('click');
}
body=document.getElementsByTagName('body')[0];
var img = document.createElement("IMG");
img.src='image.gif';
img.onclick=imgClick;
body.appendChild(img);
or by socalled anonymous function :
img.onclick=function() {
alert('click');
}
[출처] http://stackoverflow.com/questions/13288553/css-cursor-is-not-working-on-dynamically-added-map-tag
'★─Programing > ☆─WebProgram' 카테고리의 다른 글
[JavaScript] createElement, 새로운 요소 생성하기. (0) | 2016.07.28 |
---|---|
[JavaScript] Add onClick event to document.createElement(“th”) (0) | 2016.07.28 |
[Java Servlet] 정규식을 이용한 이미지 태그 추출 (0) | 2016.07.27 |
[JSTL] FMT, I18N - 국제화(Internationalization) (0) | 2016.07.27 |
[JSTL] foreach 구문 break 처리 (0) | 2016.07.27 |
Comments