2021年2月1日

摘要: $("button").dblclick(function(){ return ; }) 阅读全文

posted @ 2021-02-01 11:40 猫头唔食鱼 阅读(312) 评论(0) 推荐(0) 编辑

摘要: $("body").on("touchend", function(e) { // 判断默认行为是否可以被禁用 if (e.cancelable) { // 判断默认行为是否已经被禁用 if (!e.defaultPrevented) { e.preventDefault(); } } moveEn 阅读全文

posted @ 2021-02-01 10:23 猫头唔食鱼 阅读(132) 评论(0) 推荐(0) 编辑

摘要: $("select").change(function(){ console.log($(this).val()); }); 阅读全文

posted @ 2021-02-01 10:13 猫头唔食鱼 阅读(347) 评论(0) 推荐(0) 编辑

摘要: function HTMLDecode(text) { var temp = document.createElement("div"); temp.innerHTML = text; var output = temp.innerText || temp.textContent; temp = n 阅读全文

posted @ 2021-02-01 10:05 猫头唔食鱼 阅读(274) 评论(0) 推荐(0) 编辑

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文

posted @ 2021-02-01 09:47 猫头唔食鱼 阅读(172) 评论(0) 推荐(0) 编辑

摘要: a = input('请输入') print(a) 阅读全文

posted @ 2021-02-01 01:07 猫头唔食鱼 阅读(147) 评论(0) 推荐(0) 编辑