6

所以我对 html 很陌生,需要一些帮助。

我正在尝试制作 3 个按钮,当您单击它们时,每个按钮都会更改旁边的文本。我为每个按钮使用以下代码:

<a href="#" onClick="document.getElementById('past').innerHTML='---future---';">

当我单击按钮时,文本将在 innerHTML="" 之后的文本中发生变化。问题是我在这些地方添加了很多文本---未来---它不会再在浏览器中加载它。屏幕不会更新。我该如何克服这个问题?我已经有这个问题很长一段时间了,所以任何帮助都会得到帮助。

4

4 回答 4

11
<script>
function changeText()
{
 document.getElementById('boldStuff').innerHTML = 'Fred Flinstone';
}
</script>
<p>Welcome to the site <b id='boldStuff'>dude</b> </p> 
<input type='button' onclick='changeText()' value='Change Text'/>
</body>
</html>

试试这个代码。这个对我有用。在上面的代码中,我使用了 [bold] 标签来聚焦它,您可以使用 Acronym 标签。

于 2013-06-12T11:33:06.683 回答
8
<p id="peep"></p>

<button onclick="myFunction('Harry Potter')">Click for Harry Potter</button>
<button onclick="myFunction('Bob')">Click for Bob</button>

<script>
function myFunction(name)
{
document.getElementById("peep").innerHTML = "Welcome " + name;
}
</script>

在所有按钮上使用相同的功能来更改文本!

检查这个小提琴

于 2013-06-12T11:39:52.877 回答
1

使用此代码:

HTML:

<h1> Welcome to the </h2><span id="future-clicked"></span>

<button onclick="clicked_on()">Click for future</button>

JS:

<script>
    function clicked_on(){
        document.getElementById('future-clicked').innerHTML = 'Future World';
    }

于 2017-01-27T09:00:20.810 回答
1

试试这个来改变点击文本的文本:

 <div id="chgtext">This is my current text</div>
    <a href="#" onclick="document.getElementById('chgtext').innerHTML='Change the text using javascript';">Change text</a> &nbsp; &nbsp;
    <a href="#" onclick="document.getElementById('chgtext').innerHTML='Text will be changed based on the other text';">Change text2</a>&nbsp;  &nbsp;
    <a href="#" onclick="document.getElementById('chgtext').innerHTML='This is another sample changed text on click the onther text';">Change text3</a>&nbsp;  &nbsp;
    </div>
于 2017-01-02T10:54:31.800 回答