在悬停时获取li的价值

时间:2019-07-02 16:49:47

标签: ajax jsp

我需要在鼠标悬停时使用li的值。我知道可以在jquery中完成,但无法在jsp中访问变量。我需要在jsp中访问数据库需要变量的值。怎么办?

 var d = "";
    $("#menu li").mouseover(function() {
       d=$(this).attr('value');
    $.ajax({
      type: "post",
      url: "", 
      data: {n:d}, 
      success: function(data) {
        alert("success");

      },
      error:function (xhr, ajaxOptions, thrownError){
        alert("error"); 
        alert(xhr.status);
        alert(thrownError);
      }  

    });
    });

尝试使用ajax将jquery变量发送到jsp。它显示成功警报,但jsp中的字符串值变为空。

0 个答案:

没有答案