摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 12:59 尚宇园 阅读(91) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 12:58 尚宇园 阅读(133) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 12:57 尚宇园 阅读(97) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 12:56 尚宇园 阅读(145) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head > <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equi 阅读全文
posted @ 2020-03-08 12:49 尚宇园 阅读(89) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 12:46 尚宇园 阅读(71) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-03-08 12:45 尚宇园 阅读(249) 评论(0) 推荐(0) 编辑
摘要: //autofocus 1.自动获取焦点 2.autocomplete:on 打开 off关闭 必须配合name属性(获取提交记录) 3.required 必须填写内容不然不可以提交 4.pattern正则表达式验证 "^(\+86)?1\d{10}$" 5.<form id="#"></form> 阅读全文
posted @ 2020-03-08 12:39 尚宇园 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1 jQuery 事件方法 2 事件方法触发器或添加一个函数到被选元素的事件处理程序。 3 下面的表格列出了所有用于处理事件的 jQuery 方法。 4 bind()向元素添加事件处理程序 5 blur()添加/触发失去焦点事件 6 change()添加/触发 change 事件 7 click() 阅读全文
posted @ 2020-03-08 12:37 尚宇园 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 $.ajax({ 2 url:"", 3 type:"POST", 4 data:{ 5 id: id, 6 status: status, 7 }, 8 success:function(data){ 9 if (data.success){ 10 }else { 11 } 12 } 13 } 阅读全文
posted @ 2020-03-08 12:24 尚宇园 阅读(85) 评论(0) 推荐(0) 编辑