添加输入当前值并使用jquery进行排序

时间:2012-08-30 06:12:32

标签: jquery html

我有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>

2 个答案:

答案 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/>');                
    });