随笔分类 - js
摘要:Python 调用 js 文件,报 execjs._exceptions.ProgramError: SyntaxError: 缺少 ';' 错误 原因:execjs 默认使用了windows的JScript 引擎导致的,我们可以在python命令行中查看 import execjs execjs.
阅读全文
摘要:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyexecjs import execjs
阅读全文
摘要:网址https://www.jsjiami.com/javascriptobfuscator.html 搜索 复制
阅读全文
摘要:function xianshi ( obj ) { // 用来保存所有的属性名称和值 var props = "" ; // 开始遍历 for ( var p in obj ){ // 方法 if ( typeof ( obj [ p ]) == " function " ){ obj [ p ]
阅读全文