-

xiyuetaASP().functionBlur() 属性方法

混淆匹配元素集中每个元素的函数参数和变量
快速上手

xiyuetaASP().functionBlur()属性方法,一种调用方式:
1、xiyuetaASP("*").functionBlur();
尝试一下>>

  • 代码
  • 效果
<script src="https://www.xiyueta.com/js/xiyueta.min.js"></script>
<script>var asp='<%\n\
dim a,b,c\n\
function mytest(byval aAa,byref bBb,ccC)\n\
    dim e,F,g\n\
    response.write(e & f & g)\n\
    dim h,i,j,k\n\
end function\n\
function debug(byval ddd,byref eee,ffff)\n\
    dim e,F,g\n\
    debug="this is " & ddd & eee & ffff\n\
end function\n\
%>'
 
xiyuetaASP.load(asp); 
$.log(xiyuetaASP("*").functionBlur().print())
</script>
<%
dim a,b,c
function mytest(byval a,byref b,c)
    dim d,e,f
    response.write(d & e & f)
    dim g,h,i,j
end function
function debug(byval a,byref b,c)
    dim d,e,f
    debug="this is " & a & b & c
end function
%>