js函数中this的传值的问题 - SegmentFault
js函数中this的传值的问题 Documentvar i=1; window.onload = function() { node_name = document.body.firstChild; node_name.setAttribute("src",...
html js函数传的this是什么意思_百度知道
最佳答案: this就是你当前要执行的js所抓获的节点,这样在js里就可以不用document.getElement之类的写法来抓获id,name或标签名,省去一些麻烦。一般用obj来代替。 <...更多关于js函数中this的传值的问题的问题>>
关于JS函数之间传值问题_百度知道
最佳答案: var b; var d; function a(){ b="2013/07"; return b; } ` function c(){ d=12; return d; } document.write(a() + '/' + c())...更多关于js函数中this的传值的问题的问题>>