how to load a js file and execute it on CEF
问题 I use CEF(chromium ebedded Framework) load a html page: <!DOCTYPE html> <html> <head> </head> <body> <script src="phantom-limb.js" type="text/javascript"></script> </body> </html> and it works ok. now, I modify the page as follow: <!DOCTYPE html> <html> <head> </head> <body> </body> </html> and after cef loaded it, I use cef's ExecuteJavaScript method to execute the same phantom-limb.js, but nothing appear. how can I load the js file and execute, or, the js file has some limit? thx:) 回答1: As