gpt4 book ai didi

javascript - 在 <input> 中动态添加

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

我要添加<div>里面<input>

<input type="submit"  
name="body_0$main_0$contentmain_0$maincontent_1$contantwrapper_0$disclamerwapper_1$DisclaimerAcceptButton"
value="I understand and agree to all of the above "
onclick="return apt();"
id="DisclaimerAcceptButton"
class="DisclaimerAcceptButton">

按钮太长,所以我想将它的标题分成两行。我无法访问纯 html,因为一切都是动态的。

最佳答案

input elements cannot have descendants :

<!ELEMENT INPUT - O EMPTY              -- form control -->
^^^^^

但是,如果您可以更改生成按钮的代码,则可以使用 button相反:

<button name="body_0$main_0$contentmain_0$maincontent_1$contantwrapper_0$disclamerwapper_1$DisclaimerAcceptButton" onclick="return apt();" id="DisclaimerAcceptButton" class="DisclaimerAcceptButton"> 
I understand and agree to <br />
all of the above
</button>

这使您可以根据需要设置按钮内容的样式。

关于javascript - 在 &lt;input&gt; 中动态添加 <div>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7977856/

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