我有jQuery函数,我希望添加当前输入值并相应地对它们进行排序。但我的功能没有添加。
<head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
$(function(){
$('input[type=button]').click(function(){
var val=$('input[type=text]').val();
var nn = $('.rhs').text(val);
})
})
</script>
<style>
.rhs { height:360px}
</style>
</head>
<body>
<input type="text" />
<input type="button" value="click"/>
<div class="rhs"></div>
</body>
答案 0 :(得分:0)
你是这样的意思:( the working demo )
$(function(){
var nn = [];
$('input[type=button]').click(function(){
nn.push($('input[type=text]').val());
$('.rhs').html(nn.sort(function(a,b){return a-b;}).join('<br>'));
});
});
答案 1 :(得分:0)
$('input[type=button]').click(function() {
var val = $('input[type=text]').val();
var nn = $('.rhs').append(val+'<br/>');
});