1 Star 0 Fork 0

poem/酷家惠小程序前端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setPx.html 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
poem 提交于 2018-08-20 15:59 . front page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>计算器</title>
</head>
<body>
<!-- <p>3x = val / 3 * 1.81</p>
<input type="text" id="setValue"><span class="setValue"></span> &nbsp;&nbsp;rpx
<br/>
<p>1rem = 16px val / 3 / 16</p>
<input type="text" id="setRemValue"><span class="setRemValue"></span> &nbsp;&nbsp;rem -->
<!-- <p>2x = val / 2 * 2</p>
<input type="text" id="setValue"><span class="setValue"></span> &nbsp;&nbsp;rpx
<br/> -->
<p>1rem = 16px val / 2 / 10</p>
<input type="text" id="setRemValue"><span class="setRemValue"></span> &nbsp;&nbsp;rem
</body>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>
$(function(){
$("#setValue").blur(function(){
var result = Math.round($(this).val() / 3 * 1.81);
$(".setValue").html(result);
})
$("#setValue").focus(function(){
$(this).val('')
})
$("#setRemValue").blur(function(){
var result = $(this).val() / 2 / 10;
$(".setRemValue").html(result);
})
$("#setRemValue").focus(function(){
$(this).val('')
})
})
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pomexl/cool_home_applet_front_end.git
git@gitee.com:pomexl/cool_home_applet_front_end.git
pomexl
cool_home_applet_front_end
酷家惠小程序前端
master

搜索帮助