php - passing data through window.location in javascript - Stack Overflow

I am trying to pass the data through window.location, the data is available in del(id,img,album).I want

I am trying to pass the data through window.location, the data is available in del(id,img,album).

I want to send multiple values through window.location as

 window.location="save.php?type=deldownload&album="+album&id="+id; 

But this does not work, but this code below works.

function del(id,img,album){
    var where_to= confirm("Do you really want to delete "+img+" image");
    if (where_to== true)
    {
         window.location="save.php?type=deldownload&id="+id; 
    } 
    else
    {
         alert('Ok! You Can continue with this Album');
    }

}

Please tell what the real problem is.

I am trying to pass the data through window.location, the data is available in del(id,img,album).

I want to send multiple values through window.location as

 window.location="save.php?type=deldownload&album="+album&id="+id; 

But this does not work, but this code below works.

function del(id,img,album){
    var where_to= confirm("Do you really want to delete "+img+" image");
    if (where_to== true)
    {
         window.location="save.php?type=deldownload&id="+id; 
    } 
    else
    {
         alert('Ok! You Can continue with this Album');
    }

}

Please tell what the real problem is.

Share Improve this question edited Sep 21, 2012 at 13:39 Chad Ferguson 3,0875 gold badges37 silver badges42 bronze badges asked Sep 21, 2012 at 8:53 user1688258user1688258 412 silver badges6 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

You missing few quotes

window.location="save.php?type=deldownload&album="+album+"&id="+id; 

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744872006a4598315.html

相关推荐

  • php - passing data through window.location in javascript - Stack Overflow

    I am trying to pass the data through window.location, the data is available in del(id,img,album).I want

    1天前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信