gpt4 book ai didi

javascript - jQuery 对象转换为字符串

转载 作者:行者123 更新时间:2023-12-02 19:32:19 25 4
gpt4 key购买 nike

可以帮我解决 jquery 对象问题。

问题如下,我有这段代码:

url = '<a href="http://url.com">Name</a>';
otherValue = "Other Value";

x = jQuery(url).text(otherValue);
console.log(x);
console.log(typeof(x));

此返回:

[<a href=​"http:​/​/url.com">​Other Value​</a>​]
object

我如何强制转换这个对象并最终得到一个字符串?

谢谢

最佳答案

尝试 console.log(x[0].outerHTML);

说明:x[0] 为您提供 HTMLAnchorElement 对象,HTMLAnchorElement.outerHTML 为您提供 html 字符串。

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

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