需要准备的材料分别是:电脑、html编辑器、浏览器。
专注于为中小企业提供做网站、网站制作服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业南岸免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了1000+企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html的script标签中,输入js代码:
var a = 3.14, b = -6;
print(a);print(b);
function print(c) {
if (c 0)
document.write(c + ' is positive.br/');
else if (c 0)
document.write(c + ' is negative.br/');
}
3、浏览器运行index.html页面,此时会打印出数字正负判断的结果。
html
head
script language="javaScript"
function ch(){
if(isNaN(nob.value)){
alert("您输入的非数字");
}
else{
if(nob.value == 0){
alert("您输入的数字是0!");
}
else if(nob.value 0){
alert("您输入的数字是正数!");
}
else{
alert("您输入的数字是负数!");
}
}
nob.value="";
}
/script
/head
body
input type=text name=nob/input/br
input type=button name=ok onclick="ch()" value="判断"
/body
/html
在正数前面加一个'~'就行了
// 正数
var a = 666;
// 转负数
var b = ~a;
script
var str = '%=(Recordset1.Fields.Item("yl1305").Value)%';
if(str 0){
document.write("font color=red"+str+"/font");
}
/script
$("#add1").click(function () {
//移除置灰
$('#min1').removeAttr("disabled");
t.val(parseInt(t.val()) + 1)
setTotal(); GetCount();
})
$("#min1").click(function () {
if(parseInt(t.val())2){
//按钮置灰
$('#min1').attr('disabled',"true");
}else{
t.val(parseInt(t.val()) - 1)
}
setTotal(); GetCount();
})
首先 在点“-”的时候 判断是否小于2 小于2了 就把按钮置灰,当点“+”的时候 在把置灰取消掉