
<script type="text/javascript">
$(function(){
$('#send-btn').click(function(){
var username = $('input[name=username');
var content= $('input[name=content');
if(username.val()==''){
alert('用户名不能为空');
username.focus();
}
if(content.val()==''){
alert('内容不能为空');
content.focus();
}
$.post("/wish2/Index/Index/handle",{username : username.val(),content : content.val()},function(data){
},'json');
});
});
</script>改<script type="text/javascript">
$(function(){
$('#send-btn').click(function(){
var username = $('input[name=username]');
var content= $('content');
if(username.val()==''){
alert('用户名不能为空');
username.focus();
}
if(content.val()==''){
alert('内容不能为空');
content.focus();
}
$.post("/wish2/Index/Index/handle",{username : username.val(),content : content.val()},function(data){
},'json');
});
});
</script>
复制代码 最佳答案