gpt4 book ai didi

jquery - 如何将 jQuery 对象转换为字符串?

转载 作者:IT王子 更新时间:2023-10-29 03:23:30 24 4
gpt4 key购买 nike

如何将 jQuery 对象转换为字符串?

最佳答案

我假设您要的是完整的 HTML 字符串。如果是这样的话,像这样的事情就可以了:

$('<div>').append($('#item-of-interest').clone()).html(); 

对此有更深入的解释 here ,但实际上您创建了一个新节点来包装感兴趣的项目,进行操作,将其删除,然后获取 HTML。

如果您只是追求字符串表示,那么请使用 new String(obj)

更新

我在 2009 年写了原始答案。截至 2014 年,大多数主流浏览器现在都支持 outerHTML 作为 native 属性(例如,参见 FirefoxInternet Explorer),因此您可以做:

$('#item-of-interest').prop('outerHTML');

关于jquery - 如何将 jQuery 对象转换为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/652763/

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