这个问题在这里已经有一个答案:>
How may I reference the script tag that loaded the currently-executing script?11
如何查找元素是< script>坐在
举个例子,我们来看看吧
如何查找元素是< script>坐在
举个例子,我们来看看吧
<div> <script type="text/javascript"> var time = new Date(),hrs = time.getHours(),min = time.getMinutes(); document.write('It is '+hrs+":"+(min<10?'0':'')+min); </script> </div>
那么如果我想把它改成更现代的东西,那我怎么知道我们在做什么元素呢?
所以我想写,例如在jQuery
$(thisdiv).html('It is '+hrs+":"+(min<10?'0':'')+min);
但是如何得到这个div?
是的,我知道,我可以给它一个ID,但我有这样的感觉,没有必要.浏览器知道我们在哪里,否则它甚至不能做document.write!
那么建议?我搜索,但找不到.是这么简单,我忽略了明显的吗?