常用功能点

$("#button").keypress(function(keyc){
  if(keyc.keyCode==13){ //如果是回车键,就提交表单
        submit();
  }
});

function submit(){
     if($("#Form").form('validate'));//这里使用了jquery的validator验证插件
     $("#Form").submit();
 } 

 

 

 

 

var position = $("#button").position();
    $("#vp").css("top",position.top+35);
    $("#vp").css("left",position.left-10); 
    $("#content").children().children().html("${errorInfo}");//errorInfo是el表达式的内容

对于id="content"的html内容:


   

         

  •    

 

这里的children方法默认是获得第一个子元素,否则有多个ul时,以上方法是可能存在问题的。

 

你可能感兴趣的:(JQuery)