摘要: function displayResult(){ var x=document.getElementById("mySelect").selectedIndex; var y=document.getElementById("mySelect").options; alert("索引: " + y[x].index + " is " + y[x].text); } ... 阅读全文
posted @ 2017-02-13 22:43 黄先森 阅读(169) 评论(0) 推荐(0)
摘要: //确认密码 function passwordConfirm() { var input = confirm.querySelectorAll('input')[0]; // var inputValue = confirm.querySelectorAll('input')[0].value; 阅读全文
posted @ 2017-02-13 22:02 黄先森 阅读(189) 评论(0) 推荐(0)
摘要: //上下左右,都居中 .box{ width: 100px; height: 100px; border: 1px solid blue; display: flex; } .box1{ width: 50px; heig... 阅读全文
posted @ 2017-02-13 10:41 黄先森 阅读(329) 评论(0) 推荐(0)