내에서 elementId로부터 얻을 방법은 몇 가지 코드가 있습니다.다른 함수
내가하려는 것은 이미지 맵을 클릭하여 요소의 ID를 얻는 것입니다. 내가이 fuction를 사용하는 경우
<area id="cupandplates" alt="" title="cupandplates" href="javascript:new_training()" shape="rect" coords="212,127,295,196" style="outline:none;" target="_self" />
<area id="3cups" alt="" title="3cups" href="javascript:new_training()" shape="rect" coords="313,147,415,201" style="outline:none;" target="_self" />
<area id="beerstines" alt="" title="beerstines" href="javascript:new_training()" shape="rect" coords="200,231,269,290" style="outline:none;" target="_self" />
:
function reply_click(clicked_id)
{
alert(clicked_id);
}
을 변경 내 지역의
<area id="cupandplates" alt="" title="cupandplates" href="javascript:new_training()" onClick="reply_click(this.id)" shape="rect" coords="212,127,295,196" style="outline:none;" target="_self" />
<area id="3cups" alt="" title="3cups" href="javascript:new_training()" onClick="reply_click(this.id)" shape="rect" coords="313,147,415,201" style="outline:none;" target="_self" />
<area id="beerstines" alt="" title="beerstines" href="javascript:new_training()" onClick="reply_click(this.id)" shape="rect" coords="200,231,269,290" style="outline:none;" target="_self" />
내가 뭘 이제 얻을 것은 그것은 적절한 ID
을 알려드립니다 :
이것은 항목 1입니다. 항목 삭제
이 cupandplates이 항목 삭제 1 : 1
이이 아이템 3 그렇게 내가 얻을 수 있도록 변경하는 것을 3
임 확실하지 않은 항목 삭제입니다 항목이 삭제 항목 2
입니다
이 3cups이이 항목 3
삭제 beerstines은 2항목을 삭제하다
도움이 될 것입니다. 호출 할 때
당신은 new_training'href = "javascript : new_training (this.id)"에서 param으로 id를 전달하고 싶지 않고'new_training (id) {document.getElementById (id) .style = ""; // etc ..}' –