使用javascript进行HTML转换为xml?

时间:2012-12-24 12:36:31

标签: javascript xml json html

是否可以使用JavaScript将所有div子信息转换为XML或JSON?

$("#droppable").droppable({
drop : function(event, ui) {
    var id = $(ui.draggable).attr("id");
    var cloneObj = $((ui.draggable).clone());
    $(cloneObj).removeClass("draggable ui-draggable");
    if (id === "txt") {
        inputOBj = document.createElement("input");
        inputOBj.setAttribute("id", "txt" + i);
        $("#droppable").append(inputOBj);
    } else if (id == "combo") {
        inputOBj = document.createElement("select");
        inputOBj.setAttribute("id", "select" + i);
        console.log("");
    }
  });

2 个答案:

答案 0 :(得分:5)

我相信你可以使用XMLSerializer来做到这一点。

var yourString = new XMLSerializer().serializeToString(cloneObj[0]);

答案 1 :(得分:1)

有一个名为outerHTML的属性。 它以HTML格式设置或检索对象及其内容。 你可以用以下方式使用它。 e.g:

$(document).ready(function() {  
    $('#p').click(function() {
        alert($('#p')[0].outerHTML);
    }); 
});

提示:p是您页面正文中的任何标记ID。