vagrantear牛人大佬:
只需要f12以后Disable JavaScript
然后再刷新一波就行了

ABCHINA牛人大佬:
你知道javascript是啥吗?
你这样小白搞不好要重装浏览器的

深巷老猫i牛人大佬:
给个脚本 方便

  1. // ==UserScript==
  2. // @name         知乎免登录
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.7
  5. // @description  垃圾知乎既然逼着电脑端用短信登陆,那爷就不登陆了
  6. // @author       You
  7. // @match        https://www.zhihu.com/*
  8. // @grant        none
  9. // ==/UserScript==
  10. (function () {
  11.   "use strict";
  12.   if (document.location.href.indexOf("/signin?") > -1) {
  13.     window.location.href = "//zhihu.com/search?";
  14.   }
  15.   function htmlObservation(mutationList,observer){
  16.     for(let mutation of mutationList){
  17.       if(‘attributes’ === mutation.type && ‘style’ === mutation.attributeName){
  18.         if(document.body.parentNode.style.overflow !== ‘auto’){
  19.           document.body.parentNode.style.overflow = ‘auto’
  20.         }
  21.       }
  22.     }
  23.   }
  24.   function bodyObservation(mutationList,observer){
  25.     if(document.getElementsByClassName(‘signFlowModal’)){
  26.       const model = document.getElementsByClassName(‘Modal-wrapper’)
  27.       if(model){
  28.         model.parentNode.removeChild(model)
  29.       }
  30.     }
  31.   }
  32.   document.body.parentNode.style.overflow = ‘auto’
  33.   const htmlObserverConfig = {attributes:true}
  34.   const htmlObserver = new MutationObserver(htmlObservation)
  35.   htmlObserver.observe(document.body.parentNode,htmlObserverConfig)
  36.   const bodyObserverConfig = {childList:true,subtree:true}
  37.   const bodyObserver = new MutationObserver(bodyObservation)
  38.   bodyObserver.observe(document.body,bodyObserverConfig)
  39.   
  40. })();

mix牛人大佬:
更简单同时不影响正常浏览

  1. ||static.zhihu.com/heifetz/main.signflow.*.js$script,domain=www.zhihu.com