Браузер CEFsharp внедряет jquery - PullRequest
       7

Браузер CEFsharp внедряет jquery

0 голосов
/ 04 октября 2018

Я пытаюсь внедрить jquery в браузер CEFsharp, но это не сработало, не знаю почему!

вот фрагмент кода того, что я пробовал.Есть ли другой способ загрузить JQuery на загруженную страницу в браузере CEFsharp

 string query = "(function () {
        // more or less stolen form jquery core and adapted by paul irish
        function getScript(url, success) {
            var script = document.createElement('script');
            script.src = url;
            var head = document.getElementsByTagName('head')[0],
                done = false;
            // Attach handlers for all browsers
            script.onload = script.onreadystatechange = function () {
                if (!done && (!this.readyState
                    || this.readyState == 'loaded'
                    || this.readyState == 'complete')) {
                    done = true;
                    success();
                    script.onload = script.onreadystatechange = null;
                    head.removeChild(script);
                }
            };
            head.appendChild(script);
        }
        getScript('http://code.jquery.com/jquery-latest.min.js', function () {
            if (typeof jQuery == 'undefined') {
                console.log('Sorry, but jQuery wasn\'t able to load');
            } else {
                console.log('This page is now jQuerified with v' + $.fn.jquery);

                $(document).ready(function () {
                    alert(1);
                    //here you can write your jquery code
                });
            }
        });
    })();";

     LoginWebbrowser.ExecuteScriptAsync(query);

1 Ответ

0 голосов
/ 09 мая 2019
string jq = @"var scr = window.document.createElement('script');
scr.type = 'text/javascript';
scr.src = 'https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js';
var head = window.document.getElementsByTagName('head')[0];
head.appendChild(scr);"
LoginWebbrowser.EvaluateScriptAsync(jq);
...