I have a common pagination code, in the form of cshtml as a partial view:
1 2 3 4 5 6 |
|
The corresponding js code is as follows:
1 2 3 4 5 |
|
The main view uses jquery: jquery.mobile-1.4.5.js Through the debugger console, I get an error at this line (9408):
1 |
|
Link to jquery page: http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js
The problem now is that this code works fine on all pages, because this paging code is used by all other views that implement pagination, only one view has the problem. I don't want to change anything in the jQuery file, and I have no idea what's causing this exact problem.
P粉7594512552023-09-07 00:12:32
According to jquery-mobile's Github page, try replacing the relevant lines with the following code:
1 |
|
You can try to update jquery-mobile to version 1.5.0-rc1, the bug seems to have been fixed in that version.