天天看點

HTML對象的拖放事件

JS處理代碼:

var oNewOption;

// Code for dynamically adding options to a select.

function ShowResults(){

// Information about the events

// and what object fired them.

arg = event.type + "  fired by  " + event.srcElement.id;

oNewOption = new Option();

oNewOption.text = arg;

$id("oResults").add(oNewOption,0);

}

function $id(id){

    return document.getElementById(id);

HTML部分:

<P>Source events are wired up to this text box.</P>

<input ID="txtDragOrigin" value="Text to Drag"

ondragstart="ShowResults()"

ondrag="ShowResults()"

ondragend="ShowResults()"

>

<P>Target events are bound to this text box.</P>

<input ID="txtDragDestination" value="Drag Destination"

ondragenter="ShowResults()"

ondragover="ShowResults()"

ondragleave="ShowResults()"

ondrop="ShowResults()"

<br /><br />

<select ID="oResults" size=30>

<option>List of Events Fired</option>

</select>

事件結果:

HTML對象的拖放事件

<a target="_blank" href="http://www.cnblogs.com/lhb25/p/must-read-links-for-web-designers-and-developers-volume-12.html">Web 前端工程師和設計師必讀精華文章推薦</a>

<a href="http://www.cnblogs.com/lhb25//lhb25/archive/2011/07/28/html5-awesome-single-page-sites-inspiration.html" target="_blank">酷!15個精美的 HTML5 單頁網站作品欣賞</a>

<a target="_blank" href="http://www.cnblogs.com/lhb25//lhb25/archive/2011/11/22/best-awesome-css3-animation-demos.html">炫!35個讓人驚訝的 CSS3 動畫效果示範</a>

<a href="http://www.cnblogs.com/lhb25//lhb25/archive/2012/03/02/30-mind-blowing-parallax-scrolling-effect-websites.html" target="_blank">贊!30個與衆不同的優秀視差滾動效果網站</a>

<a target="_blank" href="http://www.cnblogs.com/lhb25//lhb25/archive/2012/01/13/25-outstanding-single-page-website-designs.html">靓å!25個優秀的國外單頁網站設計作品欣賞</a>

<a target="_blank" href="http://www.cnblogs.com/lhb25//lhb25/archive/2011/08/09/awesome-html5-and-javascript-effects.html">帥!8個驚豔的 HTML5 和 JavaScript 特效</a>

<a href="http://www.cnblogs.com/lhb25//lhb25/archive/2011/06/27/35-exclusive-rainbow-colored-flash-websites.html" target="_blank">頂!35個很漂亮的國外 Flash 網站作品欣賞</a>

<a href="http://www.cnblogs.com/lhb25//lhb25/archive/2011/08/24/outstanding-admin-panels-part-one.html" target="_blank">哇!34個漂亮網站和應用程式背景管理界面</a>

HTML對象的拖放事件

<a href="http://www.yyyweb.com/go/web" target="_blank">本部落格新站點 ◆ 前端裡 ◆ 歡迎圍觀:)</a>

歡迎任何形式的轉載,但請務必注明出處。

繼續閱讀