Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のエリア形状がこのIDでこのように見える場合、jqueryでこれを行う最善の方法は何ですか?
<area id="five" shape="rect" coords="610,22,653,62" href="#" />
エリアの形状は重要ではないと思います。おそらく次のようなことができます:
var $areaShape = $("#five"), $div = $("<div>Cool Stuff bro.</div>"); $div.css({ position : "absolute", top : $areaShape.offset().top, left : $areaShape.offset().left }); $("body").append($div);