How can i avoid Jquery translate `?` to `%3F`

kuka muk

I have the follwoing Jquery code to open page on button click passing a parameter but ? is translated to %3F is there anyways to fix this?

$("#PrintDocument").click(function () {

    var grid = $("#Billings").data("kendoGrid");
    var row = $("input:checked", grid.tbody).closest("tr");
    var item = grid.dataItem(row);
    window.location.pathname = '/invoice/billing/Print' + '?productId=' + item.ProductID + '&' + 'runId=' + item.RunID;
   
});
epascarello

You are setting the pathname which does not have a query string.

window.location.href = '/invoice/billing/Print' + '?productId=' + item.ProductID + '&' + 'runId=' + item.RunID;

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How can I resize and translate a CAShapeLayer?

分類Dev

How can I avoid "environment hell" in postman?

分類Dev

How can I avoid losing precision with ftFmtBcd?

分類Dev

How can I avoid a circular reference situation

分類Dev

Django conditional queries: How can I avoid this?

分類Dev

How can I avoid duplicate templates in Meteor?

分類Dev

How i can avoid the distinct() of watchdog?

分類Dev

How can I avoid problems with CPU power?

分類Dev

How can I translate an href into a RequestDto using ServiceStack?

分類Dev

How can I avoid nested Navigation Bars in SwiftUI?

分類Dev

How can I avoid running some tests in parallel?

分類Dev

How can I avoid Phusion Passenger running as root?

分類Dev

How can I avoid using 'at' in radial-gradient?

分類Dev

How can I avoid overwriting dynamodb from two lambdas?

分類Dev

EXC_BAD_ACCESS - How can I avoid it?

分類Dev

How can i avoid or pass over a directory that is access denied?

分類Dev

How can I avoid repeating the css and not using !important?

分類Dev

How can I avoid a black background when fading in an overlay with ffmpeg?

分類Dev

Can I avoid mutating in this scenario?

分類Dev

How do i translate working days into hours, which can be updated more than once a day, in Power BI?

分類Dev

How to use jquery to progressively modify Translate

分類Dev

How to avoid JQuery animation spam?

分類Dev

How do I translate Romaji to Kana?

分類Dev

How can I change the text color with jQuery?

分類Dev

how can I use Jquery in reactjs

分類Dev

How can I enable right click in jquery?

分類Dev

How i can resize Div slideshow jquery

分類Dev

How can I avoid my program to keep running when I close my main frame?

分類Dev

How can I avoid Firefox's "you have chosen to open" dialog when I try to download a file?

Related 関連記事

  1. 1

    How can I resize and translate a CAShapeLayer?

  2. 2

    How can I avoid "environment hell" in postman?

  3. 3

    How can I avoid losing precision with ftFmtBcd?

  4. 4

    How can I avoid a circular reference situation

  5. 5

    Django conditional queries: How can I avoid this?

  6. 6

    How can I avoid duplicate templates in Meteor?

  7. 7

    How i can avoid the distinct() of watchdog?

  8. 8

    How can I avoid problems with CPU power?

  9. 9

    How can I translate an href into a RequestDto using ServiceStack?

  10. 10

    How can I avoid nested Navigation Bars in SwiftUI?

  11. 11

    How can I avoid running some tests in parallel?

  12. 12

    How can I avoid Phusion Passenger running as root?

  13. 13

    How can I avoid using 'at' in radial-gradient?

  14. 14

    How can I avoid overwriting dynamodb from two lambdas?

  15. 15

    EXC_BAD_ACCESS - How can I avoid it?

  16. 16

    How can i avoid or pass over a directory that is access denied?

  17. 17

    How can I avoid repeating the css and not using !important?

  18. 18

    How can I avoid a black background when fading in an overlay with ffmpeg?

  19. 19

    Can I avoid mutating in this scenario?

  20. 20

    How do i translate working days into hours, which can be updated more than once a day, in Power BI?

  21. 21

    How to use jquery to progressively modify Translate

  22. 22

    How to avoid JQuery animation spam?

  23. 23

    How do I translate Romaji to Kana?

  24. 24

    How can I change the text color with jQuery?

  25. 25

    how can I use Jquery in reactjs

  26. 26

    How can I enable right click in jquery?

  27. 27

    How i can resize Div slideshow jquery

  28. 28

    How can I avoid my program to keep running when I close my main frame?

  29. 29

    How can I avoid Firefox's "you have chosen to open" dialog when I try to download a file?

ホットタグ

アーカイブ