设计2个单选按钮,分别用来改变文本框中的字体为宋体,黑体

 我来答
沧海沉砂
2010-12-20
知道答主
回答量:24
采纳率:0%
帮助的人:10万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>

<script type="text/javascript">
function chageFont(myRadio){
var myRadioValue = myRadio.value;
var mySpan = document.getElementById("fontSpan");
if(myRadio.checked){
if(myRadioValue == "hei"){
mySpan.style.fontFamily="黑体";//设置显示的字体
}else if(myRadioValue == "song"){
mySpan.style.fontFamily="宋体";
}
}
}
</script>

</head>

<body>
<span id="fontSpan">设置字体</span><p>
<input type="radio" name="fontRadio" value="hei" onclick="chageFont(this)"/>黑体
<input type="radio" name="fontRadio" value="song" onclick="chageFont(this)"/>宋体
</body>
</html>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式