抓取列表頁連接html
因爲測試站沒有jquery因此,我用了原生的jsjquery
var obj = document.getElementsByClassName('class1');網絡
for(let i = 0;i<obj.length;i++){
console.log(obj[i].href);
}測試
應用場景,抓取網頁列表內的數據,可用於提交連接,好比熊掌號htm
字符串替換,有時看到一篇文章,可是有些敏感關鍵字被替換成了**,這裏能夠在控制檯執行js,將文本再替換回來ip
這個是有jquery的字符串
var str = $('.w-e-text').html();
var newstr=$('.w-e-text').html().replace(/[\*]{2}/g,'替換')
$('.w-e-text').html(newstr)get
若是實在想用jquery,而要進行控制檯js的網頁沒有jquery,能夠在這個網頁的頭部加入<script>標籤console
引入網絡地址的jquery便可,那麼就能夠在這個網頁上使用jquery了class