每日总结 4.23
Posted syhxx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每日总结 4.23相关的知识,希望对你有一定的参考价值。
今天进行代码的优化问题,对查询的语句进行更改。
进行金额的保留小数。
out.print(String.format("%.2f", jiage));
<!DOCTYPE HTML> <html> <head> <title>登录界面</title> <meta charset="utf-8"> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <link rel="stylesheet" type="text/css" href="css.css" /> </head> <body> <form name="form1" action="" method="post"> <h1>供货商登录</h1> <input class=input_1 id=username size=15 name="username" placeholder=用户名><br /> <input class=input_1 id=password type=text size=15 name="password" placeholder=密码><br /> <br/> <input class=input_3 type="button" onclick="login()" value="登录" /> <input class=input_3 type="button" onclick=document.form1.reset() value="重置" /> <input class=input_3 type="button" onclick="zhucea()" value="注册" /> </form> <script type="text/javascript" src="script.js"></script> </body> </html>
每日总结#2
[遇到的问题]
1.复习的时候发现js和jquery的代码作用一样但是获取到的结果不同:
js代码:
var newImg = document.createElement(‘img‘); //newImg=img
jquery代码:
var newImg = $("<img>"); //newImg=[img]
它们之间的不同就是jquery对象和DOM对象的差别:
DOM对象是对节点的引用,而jquery对象是包装DOM对象之后的一个数组对象。
[学习新知识]
1.scrollTop属性可以让元素移动一段像素:
<div id=>点击</div>
JS添加一个动画,就可以实现点击之后页面滚动一段像素:
$("#nav-icon").on("click",function(){ $(‘body‘).animate({ ‘scrollTop‘ : ‘200px‘, },1000); });
相应的还有scrollLeft属性。
以上是关于每日总结 4.23的主要内容,如果未能解决你的问题,请参考以下文章