qop 在 StackOverFlow 找到這篇 how to: dynamically load google ajax api into chrome extension content script 。
打開 Developer tools [ Ctrl + Shift + i ], 於 Console 內貼上以下的程式碼就可以在 Console 做些 Underscore/Backbone 練習 ^_^
var headElement = document.getElementsByTagName("head")[0]; var jsElement = document.createElement('script'); jsElement.type = 'text/javascript'; jsElement.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'; headElement.appendChild(jsElement); // --- jsElement = document.createElement('script'); jsElement.type = 'text/javascript'; jsElement.src = 'http://documentcloud.github.com/underscore/underscore-min.js'; headElement.appendChild(jsElement); // --- jsElement = document.createElement('script'); jsElement.type = 'text/javascript'; jsElement.src = 'http://documentcloud.github.com/backbone/backbone-min.js'; headElement.appendChild(jsElement);
沒有留言:
張貼留言