JavaScript编号问题

时间:2014-11-16 19:31:02

标签: javascript html

我在之前提出的问题中获得了此代码:

var num = 0

function addNumber() {

  num = num += 1

  document.getElementById('output').innerHTML = num;


}

function subtractFive() {


  num = num -= 5

  document.getElementById('output').innerHTML = num;

}
<img src="http://placekitten.com/g/300/200" onclick="addNumber()" />

<button onclick="subtractFive()">Subract 5 from the number.</button>

<p id="output"></p>

我想知道我是否可以对数字进行样式化。我还想知道是否可以防止数字在4或以下时进入否定状态。

1 个答案:

答案 0 :(得分:0)

防止负数使用此

function subtractFive() {

if (num > 4 ) {
num = num -= 5

document.getElementById('output').innerHTML = num; }

}

来样式化数字例如让它们变红使用这个

<p  style="color:red" id="output"></p>

访问更多文本样式参数 Css text