我想在<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>
这使您可以随心所欲地设置按钮内容的样式。