gpt4 book ai didi

javascript - JQuery - AJAX load() 方法帮助

转载 作者:行者123 更新时间:2023-12-02 20:46:15 25 4
gpt4 key购买 nike

我需要从外部页面获取内容并将其作为参数传递给函数。我已经研究过 JQuery 文档中的 url() 方法,但似乎只能使用它来将外部内容插入 div 或其他一些 HTML 元素。

基本上我需要做的是:

// I need to insert external page's content into the cont variable, how to do that?
var cont;
// so I can pass it to the bt() function (it's a tooltip plugin)
$('.class').bt(cont, {
fill: '#2a4d6b',
cssStyles: {color: 'orange', fontWeight: 'bold', width: 'auto'}
});

谁能告诉我这样的事情是否可能?

最佳答案

$.load("http://someplace", function(data){
$('.class').bt(data, {
fill: '#2a4d6b',
cssStyles: {color: 'orange', fontWeight: 'bold', width: 'auto'}
});
});

没有?

也是通过外部的,怎么外部的?您无法从其他域获取任何内容,否则这将起作用

关于javascript - JQuery - AJAX load() 方法帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1140045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com