一个用JAVA做网页的小程序
网页设计的~就是网页上显示一句话,今天你学JAVA了吗然后一个输入框和一个确定按钮~效果是输入你想要的颜色点确定后“今天你学JAVA了吗”这句话变成相应的颜色...
网页设计的~
就是 网页上显示一句话, 今天你学JAVA了吗
然后 一个输入框 和一个确定按钮~
效果是 输入你想要的颜色 点确定后 “ 今天你学JAVA了吗”这句话变成相应的颜色 展开
就是 网页上显示一句话, 今天你学JAVA了吗
然后 一个输入框 和一个确定按钮~
效果是 输入你想要的颜色 点确定后 “ 今天你学JAVA了吗”这句话变成相应的颜色 展开
2个回答
展开全部
<html>
<script type="text/javascript">
function change(){
var color = document.getElementById("color").value;
var div = document.getElementById("text");
if (color)
div.style.color = color;
}
</script>
<body>
<div id="text">今天你学JAVA了吗</div>
<input type="textfield" id="color" />
<input type="button" onclick="change();" value="确定"/>
</body>
</html>
<script type="text/javascript">
function change(){
var color = document.getElementById("color").value;
var div = document.getElementById("text");
if (color)
div.style.color = color;
}
</script>
<body>
<div id="text">今天你学JAVA了吗</div>
<input type="textfield" id="color" />
<input type="button" onclick="change();" value="确定"/>
</body>
</html>
展开全部
<script type="text/javascript">
function change(color) {
var font = document.getElementById("font");
if(color == "red" || color == "红色") {
font.style.color = "red";
} else {
alert("这里只有红的!!请输入red或者红色!!");
}
}
</script>
<label>你想要的颜色</label>
<input id="color" value="" />
<input type="button" value="确定" onclick="change(color.value)" />
<div id="font">你今天学JAVA了么?</div>
function change(color) {
var font = document.getElementById("font");
if(color == "red" || color == "红色") {
font.style.color = "red";
} else {
alert("这里只有红的!!请输入red或者红色!!");
}
}
</script>
<label>你想要的颜色</label>
<input id="color" value="" />
<input type="button" value="确定" onclick="change(color.value)" />
<div id="font">你今天学JAVA了么?</div>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询