gpt4 book ai didi

jquery html() 不返回更改后的值

转载 作者:技术小花猫 更新时间:2023-10-29 12:04:11 25 4
gpt4 key购买 nike

我有一个带有如下文本框的表单:

<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.js"></script>
</head>
<body>
<input type="text" id="myTextBox" />
</body>
</html>

当我在 myTextBox 中键入内容时,该值可用于 $("#myTextBox").val(),但如果我执行 $("body") 则不表示.html()。我怎样才能获取 html 字符串和更新的表单值呢?谢谢!

最佳答案

您可以使用 .attr() 函数。

例子:

$("input").each(function(){
$(this).attr("value", $(this).val());
});

之后你可以做:

    $("body").html();

这应该有效。

关于jquery html() 不返回更改后的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7095956/

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