1

是否可以使用 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("");
    }
  });
4

2 回答 2

9

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

var yourString = new XMLSerializer().serializeToString(cloneObj[0]);
于 2012-12-24T12:46:53.590 回答
1

有一个名为outerHTML 的属性。它在 HTML 中设置或检索对象及其内容。你可以通过以下方式使用它。例如:

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

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

于 2012-12-26T04:15:57.460 回答