chrome 中的console 下无法使用jquery选择器

来源:互联网 发布:买家怎么取消农村淘宝 编辑:程序博客网 时间:2024/06/01 23:32

大部分网站可以通过CSS 样式选择器在console中筛选元素。但是有时候会遇到某些网站不支持。原因现在并不知道,希望知道的大神赐教。

jquery 地址 http://code.jquery.com/jquery-migrate-1.2.1.min.js

解决办法:

手动添加元素引入jquery,这种方法只试用部分网站,有些也不支持。希望大家提供更多的解决方案。

var head_div = document.getElementsByTagName('head');//console.log(head_div);//console.log(head_div[0].innerHTML);var head_new = head_div[0].innerHTML + "<script src='http://code.jquery.com/jquery-migrate-1.2.1.min.js'></script>"head_div[0].innerHTML = head_new;
0 0
原创粉丝点击