This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 所有方法都在最后返回当前元素(包括appendTo和prependTo) | |
// 可以使用链式写法 | |
// append方法 向匹配的元素内部追加内容 | |
// 参数可以是字符串或者是使用createElement()方法创建的DOM对象 | |
Node.prototype.append = function(ele) { | |
if (typeof ele === 'string') { | |
var t = document.createElement('div'); | |
t.innerHTML = ele; | |
while (t.firstChild) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: AdmX - Aria2 Download Manager for Xunlei | |
:: Release by aa65535 | |
:: Time: 2013-12-13 03:08:57 | |
:: External Command: aria2c.exe, wfr.exe | |
@echo off | |
title Aria2& color f3& mode con: cols=80 lines=8& setlocal enabledelayedexpansion | |
:: 检查Aria2是否可用 | |
aria2c& cls | |
if !errorlevel! gtr 1 echo aria2c.exe not found!& pause>nul& exit |
NewerOlder