摘要: 一、$('jquery/css语法') 1.定位+点击操作:$(' ').click() $('input[id="login"]').click(); 2.定位+输入操作:$(' ').val("输入的的值") $('input[id="loginName"]').val("8888"); 二、$ 阅读全文
posted @ 2020-06-29 15:59 hehehe_wy7 阅读(554) 评论(0) 推荐(0) 编辑
摘要: //所有class包含font-red的p标签p[class~="font-red"] {color: red;} [abc^="def"] 选择 abc 属性值以 "def" 开头的所有元素[abc$="def"] 选择 abc 属性值以 "def" 结尾的所有元素[abc*="def"] 选择 阅读全文
posted @ 2020-06-29 15:56 hehehe_wy7 阅读(350) 评论(0) 推荐(0) 编辑