如何将javascript中的警报值传递到另一个页面

时间:2014-05-13 11:01:11

标签: javascript jquery

您好我需要知道如何将javascript中的警报值传递到aspx页面作为查询字符串这是我尝试过的:

  function SelectedRow() {
    $(document).on('click', '.btnprint', function () {
        var row = $(this).parents('tr').attr('id');
        var rowtext = $(this).closest('tr').text();
        alert(rowtext);
        window.open("http://10.19.13.67/ReworkLabels/Default.aspx?rowtext=" + rowtext, "my window");
        return rowtext;
    });   
}

 I am able to pass the variables into the aspx but the output looks like this:
http://10.19.13.67/ReworkLabels/Default.aspx?rowtext=7ECN1227-001SAVSS0.85B13707116-1232%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20917418-060
what i need the output to be like is 7ECN1227-000,SAVSS0.85B,1370,7116-1232,20917418-060

0 个答案:

没有答案