gpt4 book ai didi

javascript - 单击按钮时如何将 style.display 从无更改为内联?

转载 作者:行者123 更新时间:2023-11-29 18:31:06 25 4
gpt4 key购买 nike

我想在单击按钮时显示 id="text"。所以我试了一下:

    <form name="i_choose_form" action="" method="post">
<input type="submit" class="button" value="I am not sure, show me other choices..." onclick = "showText()"></br>
</form>

<span id ="text" style="display:none">First make your choice then you can see all other choices</span>

<script type = "text/javascript">

function showText() { document.getElementById("text").style.display="inline"; }

</script>

但这并没有像预期的那样工作并且没有显示文本。我究竟做错了什么? http://jsfiddle.net/dPhUQ/

最佳答案

已显示,但您正在提交该页面。将您的输入更改为 type='button' 而不是 'submit'

<input type="button" class="button" value="I am not sure, show me other choices..." onclick = "showText()"></br>

关于javascript - 单击按钮时如何将 style.display 从无更改为内联?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8184440/

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