我需要的
我需要在查看源 js 代码中隐藏 js 代码
function unloadJS(scriptName) { var head = document.getElementsByTagName('head').item(0); var js = document.getElementById(scriptName); js.parentNode.removeChild(js); } function unloadAllJS() { var jsArray = new Array(); jsArray = document.getElementsByTagName('script'); for (i = 0; i < jsArray.length; i++){ if (jsArray[i].id){ unloadJS(jsArray[i].id) }else{ jsArray[i].parentNode.removeChild(jsArray[i]); } } } var page_count = {{count()}}; if (page_count == 4) { dataLayer.push({'event':'mobilePromo-android'}); } $(document).ready(function() { var page_count = {{count()}}; var height= $(window).height(); if (page_count == 4 ) { $.ajax({ type: "GET", url: "http://times.com/mobilepopuptracker?from=android", }); $('body').html('<div class="row flush aligncenter popbx" style="height:'+height+'px"><div class="12u">'); } else { } }); function redirect() { var a=$(location).attr('href'); window.location.href=a; } </script>
问题
- 我需要在查看源代码中隐藏 js 代码。
调试
我已经重新链接http://www.sitepoint.com/hide-jquery-source-code/上的链接查找解决方案。
尽管仍然可以查看代码。
任何建议都非常受欢迎。
虽然我们知道我们不能停止在视图源中查看 js,但仍然必须有一些技巧。