本文最后更新于 2024-08-08,文章内容可能已经过时。

已谷歌浏览器为准: F12打开控制台 输入:

var script = document.createElement('script');
script.src = "需要调用的js文件?v=" + Date.parse(new Date());
document.getElementsByTagName('head')[0].appendChild(script);
jQuery(document).ready(function ($) {
   //jquery内容
});
jQuery(document).ready(function ($) {
              let type = $(".price .price-old").css('display')
              console.log(type)
              if (type === 'none') {
                return true
              }else return false
            });

可以在调用的js文件内编辑内容,用于改变页面参数等,可以实现很多操作~