我是StackExchange的新手。 JavaScript中有非常基本的問題。簡單的javascript onClick文本更改
我創建簡單的JavaScript函數變化在同一功能使用onClick
我想改變的最後一個字
這裏的文字顏色是例如
<!doctype html>
<head>
<title>
Sample Javascript
</title>
<script type="text/javascript">
function colorchange(myid)
{
x = document.getElementById('sample_text');
x.style.color = "red";
x.style.fontWeight = "bold";
text = document.getElementById('sample_text1');
}
</script>
</head>
<body>
<div id="sample_text" onClick="colorchange(1)">Welcome to <span onClick="colorchange(2)" id="sample_text1">Mahaweb</span></div>
</body>
</html>
請幫助我,我想使用相同的功能更改跨度內部內容。
喜歡的東西text.innerHTML =「新詞」 http://www.w3schools.com/jsref/prop_html_innerhtml.asp – Huangism
看到我的答案,如果它幫助您接受;) –
使用下面的** text = document.getElementById('sample_text1'); **添加此代碼** if(myid == 2){ text.innerHTML =「HELLO」; } ** – Chinmay235