我想使用 Google Closure Compiler 来最小化 javascript,但在最小化版本中它会重命名函数名称。这是预期的行为吗?在那种情况下如何使用它?
lib.js
function myfun() {
$('#test').hide();
}
lib.min.js
function myfun$$module$main(){$("#test").hide()}
看法
<a href="#" onclick="myfun()">no longer works</a>