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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
input {
margin: 5px 3px 10px 10px;
}
div {
width: 100px;
height: 100px;
border: 1px solid #000;
}
</style>
<script type="application/javascript">
"use strict";
const jq = document.location.search.substr(1);
const script = document.createElement("script");
script.setAttribute("type", "text/javascript");
script.setAttribute("src", jq);
document.head.appendChild(script);
window.addEventListener("load", () => {
const handler1 = function liveDivDblClick() { alert(1); };
const handler2 = function liveDivDragStart() { alert(2); };
const handler3 = function liveDivDragLeave() { alert(3); };
const handler4 = function liveDivDragEnd() { alert(4); };
const handler5 = function liveDivDrop() { alert(5); };
const handler6 = function liveDivDragOver() { alert(6); };
const handler7 = function divClick1() { alert(7); };
const handler8 = function divClick2() { alert(8); };
const handler9 = function divKeyDown() { alert(9); };
const handler10 = function divDragOut() { alert(10); };
if ($("#livediv").live) {
$("#livediv").live( "dblclick", handler1);
$("#livediv").live( "dragstart", handler2);
}
if ($("#livediv").delegate) {
$(document).delegate( "#livediv", "dragleave", handler3);
$(document).delegate( "#livediv", "dragend", handler4);
}
if ($("#livediv").on) {
$(document).on( "drop", "#livediv", handler5);
$(document).on( "dragover", "#livediv", handler6);
$(document).on( "dragout", "#livediv:xxxxx", handler10);
}
const div = $("div")[0];
$(div).click(handler7);
$(div).click(handler8);
$(div).keydown(handler9);
});
</script>
</head>
<body>
<div id="testdiv"></div>
<br>
<div id="livediv"></div>
</body>
</html>
|