在ios 8 app扩展javascript文件中使用jQuery

时间:2014-10-08 23:56:35

标签: javascript jquery ios8 ios8-extension

我跟随The App Extension Guide: Accessing a Webpage从页面中提取一些内容。

是否可以在我的javascript文件中使用jQuery,如果是这样的话?

1 个答案:

答案 0 :(得分:0)

我能够将jQuery注入到页面中,但是之后无法成功确定运行jQuery代码的时间。 DOMNodeInserted执行但可能在与页面DOM不同的上下文中执行。

MyExtensionJavaScriptClass.prototype = {
run: function(arguments) {

            var my_awesome_script = document.createElement("script");
            my_awesome_script.setAttribute("src","//code.jquery.com/jquery-1.11.0.min.js");
            if (my_awesome_script.addEventListener) {
               my_awesome_script.addEventListener ('DOMNodeInserted', OnNodeInserted, false);
            }

            document.head.appendChild(my_awesome_script);


     function OnNodeInserted (event) {
            // event comes out undefined and $ is also undefined
            $(document).on('paste', function(e){ alert('You just pasted!') });
     }