如何使用JQUERY获取通过锚选项卡传递的多个值

How to get the values of multiple variables, which are passing through anchor tab using Jquery. This is view part

    <a href="var1=<?php echo  $res->jid;?>&var2=<?php echo  $res->uid;?>" name="delete_user_journal">Delete</a>

I want to get this variable values in js page

  $("a[name='delete_user_journal']").each(function(index, element)
{
    var el = $(element); 
    var j_id = $(this).attr("href");
}

something like that, how to do this??