ddtarget.js

来自「YahooUI,搞WEB开发的朋友值得看一看」· JavaScript 代码 · 共 24 行

JS
24
字号
/* Copyright (c) 2006 Yahoo! Inc. All rights reserved. *//** * @class a DragDrop implementation that does not move, but can be a drop  * target.  You would get the same result by simply omitting implementation  * for the event callbacks, but this way we reduce the processing cost of the  * event listener and the callbacks. * * @extends YAHOO.util.DragDrop  * @constructor * @param {String} id the id of the element that is a drop target * @param {String} sGroup the group of related DragDrop objects */ YAHOO.util.DDTarget = function(id, sGroup) {    if (id) {        this.initTarget(id, sGroup);        this.logger.setModuleName("DDTarget");    }};YAHOO.util.DDTarget.prototype = new YAHOO.util.DragDrop();

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?