摘要:
var jqcdnurl = 'https://cdn.bootcss.com/jquery/3.2.1/jquery.js';//控制台输出function log() { for (var index in arguments) { conso... 阅读全文
摘要:
function appendJQCDN() { var head = document.head || document.getElementsByTagName('head')[0]; var script = document.createEl... 阅读全文
摘要:
var source=[];$.ajax({ type: "post", url: "connectdb/select.jsp", data: {database: "scmdb", selectsql: sql}, async: fal... 阅读全文
摘要:
try { tryCode - 尝试执行代码块}catch(err) { catchCode - 捕获错误的代码块} finally { finallyCode - 无论 try / catch 结果如何都会执行的代码块}实例: function c... 阅读全文
摘要:
//定义主函数,回调函数作为参数function A(callback) { callback(); console.log('我是主函数'); }//定义回调函数function B(){ setTimeout("console.lo... 阅读全文
摘要:
js函数体内可以通过arguments对象来接收传递进来的参数,利用这一对象属性可以动态传参。function box() { return arguments[0]+' | '+arguments[1]; //得到每次参数的值}alert(box... 阅读全文
摘要:
document 加载 document.write("") 阅读全文
摘要:
for循环var a = new Array("first", "second", "third") for(var i = 0;i 点我var arr = [1,2,3,4];arr.forEach(function(value,index,array){ a... 阅读全文