#jS

js实现tab选项卡切换

 初始状态,只展示tab1的内容   点击tab2,只展示tab2的内容     通过原生js实现tab切换,首先讲解一下实现的原理。    1.点击按钮首先给这个被点击的按钮添加一个active类,给点击的改变背景色    2.点击按钮其实就是把相应的div给显示出来。    需要注意的是,点击按钮,给按钮...
代码星球 ·2021-02-12

js流程控制语句里break和continue的使用及区别

  break:退出当前循环  continue:终止本次循环,执行下次循环1<html>23<head>4<title></title>5</head>6<script>7for(vari=0;i<10;i++){8if(i==4){9br...

js中parseInt的使用及取整的机制

 parseInt是把小数转化成整数。它取整的机制是从要取整数据的左边读取,当碰到非数字则自动结束,相当于截取到前面已读到的数字。代码如下 <html><head><title></title></head><script>vara=11.1var...

js实现复选框全选和不选

<html><head><title></title></head><style></style><script>window.onload=function(){varoDiv=document.getElementByI...

js提取行间事件

<html><head><title></title></head>  <style>    #div1{      width:100px;      height:200px;      background:red;      }  <...
代码星球 ·2021-02-12

js控制属性的两种方法

下面以控制css属性为例,html属性也是一样第一种  document.getElementById('div1').style.display='block'第二种  document.getElementById('div1').style['display']='bloc...

js实现放在div上显示,离开隐藏

鼠标放在文字上显示,离开文字隐藏,代码如下<html><head><title></title></head><style>#div1{width:100px;height:200px;background:red;display:none;}&l...
代码星球 ·2021-02-12

e825. 当JSplitPane改变大小时分配空间

Theweightofasplitpanecontrolsthebehaviorofthedividerwhenthesplitpaneisresized.Iftheweightis0,allextraspaceisgiventotherightorbottomcomponent.Iftheweightis1,alle...

e823. 创建JSplitPane

Asplitpanedividesitsspacebetweentwocomponents.Thesplitpanecontainsadividerthatallowstheusertocontroltheamountofspacedistributedtoeachcomponent.//Createaleft-rig...
代码星球 ·2021-02-12

e824. 获得和设置JSplitPane中的子组件

//Createaleft-rightsplitpaneJSplitPanehpane=newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,leftComponent,rightComponent);//Createatop-bottomsplitpaneJSplitPanevpane=...

e827. 设置JSplitPane中分隔物的大小

Adividercanbenolessthanonepixelinsize.//Createaleft-rightsplitpaneJSplitPanepane=newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,leftComponent,rightComponent);//Getcu...

e826. 获得和设置JSplitPane分开的位置

Thelocationofadividerismeasuredinpixelsfromeithertheleftedge(inthecaseofahorizontalsplitpane)orthetopedge(inthecaseofaverticalsplitpane).Therearetwowaystosetthe...

e788. 取消JSpinner的键盘编辑能力

//CreateanummberspinnerJSpinnerspinner=newJSpinner();//DisablekeyboardeditsinthespinnerJFormattedTextFieldtf=((JSpinner.DefaultEditor)spinner.getEditor()).getTe...

e790. 设置JSpinner的边框

//CreateanumberspinnerJSpinnerspinner=newJSpinner();//GetthetextfieldJFormattedTextFieldtf=((JSpinner.DefaultEditor)spinner.getEditor()).getTextField();//Setthe...
代码星球 ·2021-02-12

e789. 限制用JSpinner实现数字选择的值

//Createanumberspinnerthatonlyhandlesvaluesintherange[0,100]intmin=0;intmax=100;intstep=5;intinitValue=50;SpinnerModelmodel=newSpinnerNumberModel(initValue,min,...
首页上一页...4849505152...下一页尾页