码迷,mamicode.com
首页 > Web开发 > 详细

jquery选择器

时间:2015-07-16 13:14:11      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<script src="../jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$("input[type=‘button‘]").click(function(){
var i = 0;
$("input[type=‘text‘]").each(function(){
i += parseInt($(this).val());
});
$(‘label‘).text(i);
});
$(‘input:lt(2)‘)
.add(‘label‘)
.css(‘border‘, ‘none‘)
.css(‘borderBottom‘, ‘solid 1px navy‘)
.css({‘width‘:‘30px‘});
});
</script>
</head>
<body>
<input type="text" value="1" />+
<input type="text" value="2" />
<input type="button" value="=" />
<label>&nbsp;</label>
</body>
</html>

jquery选择器

标签:

原文地址:http://www.cnblogs.com/yhdsir/p/4650787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!