0

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

2 回答 2

0

你的意思是这样的:(工作演示

$(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>'));
   });
});
​
于 2012-08-30T06:18:21.280 回答
0

啊,我想我明白你的意思了

    $('input[type=button]').click(function() {
       var val = $('input[type=text]').val();
       var nn = $('.rhs').append(val+'<br/>');                
    });
于 2012-08-30T06:20:53.533 回答