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