处理外部 Javascript 中的单选按钮
我有一个包含三个单选按钮的页面,如下所示:
我想这样做,当其中一个按钮为单击后,元素的字体大小会发生如下变化:
$("viewer").style.fontSize = "5pt";
在 Javascript 中使用三个独立的函数来完成此操作相当简单。尽管我还没有测试过,但类似以下的内容应该可以工作:
window.onload = function() {
$("small").onclick = small;
$("medium").onclick = medium;
}
function small(){
$("viewer").style.fontSize = "5pt";
}
function medium(){
$("viewer").style.fontSize = "15pt";
}
有没有办法将这些合并到一个更大的函数中?
I have a page with three radio buttons, as such:
I want to make it so when one of these buttons is clicked, the font size of an element changes as such:
$("viewer").style.fontSize = "5pt";
It's fairly straightforward to do this in Javascript with three separate functions. Something like the following should work, although I haven't tested it:
window.onload = function() {
$("small").onclick = small;
$("medium").onclick = medium;
}
function small(){
$("viewer").style.fontSize = "5pt";
}
function medium(){
$("viewer").style.fontSize = "15pt";
}
Is there any way to merge these into one larger function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以添加新的单选按钮以获得更多尺寸,而无需更改脚本。
You can add new radio buttons for more sizes without needing to change the script.