gpt4 book ai didi

javascript - 使用javascript将html转换为xml?

转载 作者:行者123 更新时间:2023-11-28 04:22:49 24 4
gpt4 key购买 nike

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

最佳答案

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

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

关于javascript - 使用javascript将html转换为xml?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14021505/

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