Questions tagged «google-loader»

5
为什么google.load导致我的页面空白?
好吧,这看起来很奇怪,但是我找不到解决方案。 为什么这个小提琴http://jsfiddle.net/carlesso/PKkFf/只能显示页面内容,然后在发生google.load时页面空白? 如果立即完成google.load,则效果很好,但是延迟它根本不起作用。 这里是您的懒惰(或更聪明)的页面来源: <!DOCTYPE html> <html lang="en"> <head> <title>Ciao</title> <script type="text/javascript" src="https://www.google.com/jsapi"></script> </head> <body> <h1>Test</h1> <div id="quicivanno"> <p>ciao</p> </div> </body> <script type="text/javascript"> setTimeout(function() {google.load('visualization', '1.0', {'packages':['corechart']});}, 2000); </script> </html>​
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.