gpt4 book ai didi

javascript - 模板的 HTML 没有值

转载 作者:行者123 更新时间:2023-11-28 06:38:23 25 4
gpt4 key购买 nike

我正在尝试获取具有某些值的输入的 html( {{title}} 是一些 String ,它显示在我的模板中,但不在 console.log 中)

<div class="www">
<input name="title" id="post_edit_title" value="{{title}}"/>
</div>

$(t.find(".www")).html()

它输出<input name="title" id="post_edit_title"/>

如何获得正确的html

最佳答案

也许有几种方法......

如果 www 是该类的元素之一,则使用 eq获取您需要的:

$('.www').eq(0).html();

或者通过其 id 定位输入并获取其父级的 HTML。

$('#post_edit_title').parent().html();

DEMO

关于javascript - 模板的 HTML 没有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34070565/

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