如何使用jquery将html加载到变量中

时间:2012-03-31 17:57:02

标签: javascript jquery html

我知道我可以将html加载到div中:

$("#my_div").load("http://www.mypage.com");

但我想做的是将html加载到变量中:

my_var = load("http://www.mypage.com");

任何帮助都很棒。

我想循环一些项目,如:

HLS.functions.LoadSideModules = function() {
    HLS.sideModuleContent = new Object();
    for(var i = 0; i < HLS.currentModuleConfig.POLICIES.POLICY.length; i++) {
        for(var y = 0; y < HLS.currentModuleConfig.POLICIES.POLICY[i].PAGES.PAGE.length; y++) {
            for(var POS in HLS.currentModuleConfig.POLICIES.POLICY[i].PAGES.PAGE[y]) {
                var item = HLS.currentModuleConfig.POLICIES.POLICY[i].PAGES.PAGE[y][POS];
                if(!HLS.sideModuleContent[item]) {
                    HLS.sideModuleContent[item] = j.get(HLS.config.K2GETMODULE + HLS.currentModuleConfig.POLICIES.POLICY[i].PAGES.PAGE[y][POS]);
                }
            }
        }
    }
};

4 个答案:

答案 0 :(得分:76)

$.get("http://www.mypage.com", function( my_var ) {
    // my_var contains whatever that request returned
});

在jQuery下面将启动一个触发给定URL的ajax请求。它还会尝试智能地猜测将要接收哪些数据(如果它不是您需要指定的有效HTML)。如果你需要获得另一种数据类型,只需将其作为最后一个参数传递,例如

$.get("http://www.mypage.com", function( my_var ) {
    // my_var contains whatever that request returned
}, 'html');  // or 'text', 'xml', 'more'

参考:.get()

答案 1 :(得分:29)

您还可以在内存中创建一个元素并在其上使用load():

var $div = $('<div>');

$div.load('index.php #somediv', function(){
    // now $(this) contains #somediv
});

优点是您可以使用选择器指定要加载的index.php的哪个部分(#somediv)

答案 2 :(得分:1)

创建新元素是一个选项,您也可以克隆任何元素。这会复制旧节点的所有属性和值,正如它所说的那样,“精确克隆”。

如果您只想复制html的特定部分,这也可以灵活地从获取的页面中填充特定元素层次结构中的所有内容(即包含所有子元素)。

例如,如果层次结构是 -

<div id='mydiv'>
    <div>
        <span>
        ...</span>
    </div>
</div>

//...

var oldElement = document.getElementById('mydiv');
var newElement = oldElement.cloneNode(true);

/* #selector selects only that particular section & the '> *' enables to copy all of the child nodes under the parent #selector
Replace URL with the required value
function specification is optional... */

jQuery(newElement).load(URL+'#selector > *'[,function(response, status, xhr){}]);

//...

现在您可以根据需要以编程方式处理变量newElement(使用本机javascript,因为它是本机元素)。

答案 3 :(得分:1)

    function includeHTML_callBack(result){
        var my_var = result;
    }

    function includeHTML(link, callBack) {
            var xhttp = new XMLHttpRequest();
            xhttp.onreadystatechange = function() {
            if (this.readyState == 4 && this.status == 200) {
                callBack(this.responseText);
            }
          }      
          xhttp.open("GET", link, true);
          xhttp.send();
          return;
    }

    includeHTML("http://www.mypage.com", includeHTML_callBack);