function quanxuan()
成都创新互联公司自2013年起,是专业互联网技术服务公司,拥有项目成都网站建设、网站设计网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元民丰做网站,已为上家服务,为民丰各地企业和个人服务,联系电话:18980820575
{
if($('#selectall').get(0).checked==true)
{
$("input[name='quanxianselected']").each(function() {
$(this).attr("checked", true);
});
}
else{
$("input[name='quanxianselected']").each(function() {
$(this).attr("checked", false);
});
}
}
input type="checkbox" name="quanxianselected"
是用jquery实现的
读出复选框的值getElementById(复选框的id).value
在页面上选中
getElementById(复选框的id).checked==true
一个吗?
JCheckBox cb=new JCheckBox("客户");
frame.add(cb); 这是一个的
如果你要增加几个就add几个
这个“客户”就是你那个复选框的名字 这里的JCheckBox是CheckBox的升级版
CheckBox也可以这么用
import javax.swing.*;
import java.awt.*;
public class test extends JFrame{
public test(){
JButton button; //按钮
JLabel label; //标签
JComboBox combobox;//下拉菜单
JCheckBox checkbox;//复选框
JRadioButton radiobutton;//单选框
JTextField textfield;//文本框
button = new JButton("按钮");
label = new JLabel("标签:");
checkbox = new JCheckBox("复选框一");
radiobutton = new JRadioButton("单选框一");
combobox = new JComboBox();
textfield = new JTextField(100);
Container c = this.getContentPane();
c.setLayout(new FlowLayout());
c.add(button);
c.add(label);
c.add(checkbox);
c.add(radiobutton);
combobox.addItem("1");
combobox.addItem("2");
c.add(combobox);
c.add(textfield);
setSize(300, 200);
setVisible(true);
}
public static void main(String[] args) {
// TODO 自动生成方法存根
test mytest = new test();
}
}