摘要:
结构 html CSS JS 主脚本 计算 控制台输出 阅读全文
摘要:
ajax固定套路 function http(url, data, method, success, fail) { data = method == 'GET' ? data : JSON.stringify(data) console.log(data); $.ajax({ url: url, 阅读全文
摘要:
$(‘selector’).click() 触发点击事件$(‘selector’).click(function) 添加点击事件$(‘selector’).dbclick() 触发双击事件$(‘selector’).dbclick(function) 添加双击事件$(‘selector’).chan 阅读全文