jquery 从 get 调用中选择脚本节点

发布于 2024-10-20 22:10:16 字数 694 浏览 0 评论 0原文

我想通过 ajax get 调用中的 id 选择一个脚本节点。

<script id="jqgrid_js" type="text/javascript">
...
</script>

get 调用:

            $.get(url, function(results){
              console.debug(results); //the jqgrid_js is included in the result
              console.debug($('#jqgrid_js')); //this returns the node from the actual page
              console.debug($('#jqgrid_js', results)); // in the result I can not select it
              var jqgrid_js = $('#jqgrid_js', results);
              //do the update
              $('#jqgrid_js').html(jqgrid_js); 
            }, "html");

我想知道为什么相同的 select 语句不返回节点,而节点肯定包含在“结果”变量中。

I want to select a script node by id from a ajax get call.

<script id="jqgrid_js" type="text/javascript">
...
</script>

The get call:

            $.get(url, function(results){
              console.debug(results); //the jqgrid_js is included in the result
              console.debug($('#jqgrid_js')); //this returns the node from the actual page
              console.debug($('#jqgrid_js', results)); // in the result I can not select it
              var jqgrid_js = $('#jqgrid_js', results);
              //do the update
              $('#jqgrid_js').html(jqgrid_js); 
            }, "html");

I'm wondering why the same select statement does not return the node, whereas the node is definitely included in the "results" var.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自此以后,行同陌路 2024-10-27 22:10:16

尝试扭转这个局面并使用 find 代替:

var jqgrid_js = $(results).find('#jqgrid_js');

Try turning this around and using find instead:

var jqgrid_js = $(results).find('#jqgrid_js');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文