2015-12-02 104 views
1

我知道我可以從DOM得到所有<script>使用jQuery:
$('script[type="text/javascript"]')獲取所有注入腳本文件

但我怎麼能得到所有注入腳本?例如由道場。
我可以看到他們的開發人員工具

enter image description here

$('script[type="text/javascript"]').length === 0

+1

$('script')應該適用於甚至注入的腳本。 – Shreyas

+0

請注意''('script'[type =「text/javascript」]')'只會返回那些_explicitly_具有該確切類型屬性的腳本元素,並且它不會返回以'

0

你可以做

document.scripts.length 
0

計數的腳本時準備好文檔

$(function(){ 
console.log($('script[type="text/javascript"]').length); 
}); 
0

拿A L OOK在requirecachemodules屬性:

console.log(require.cache); 
console.log(require.modules);