12/02/16 04:40:42.04
>>47
<!doctype html><html><head>
<script type="text/javascript">
var lastNode;
function run() {
var url = document.getElementById("url");
getLocation(url.value.split("\r\n"));
}
function copy(node) {
clipboardData.setData("text", node.innerText.substr(4));
if (lastNode) {
lastNode.style.backgroundColor = "#fff";
}
node.style.backgroundColor = "#0f0";
lastNode = node;
}
つづく