Jquery implements Ajax asynchronous submission and reports an error "Uncaught TypeError: Illegal invocation", as shown below:
Troubleshooting found that the error is here:
$('input[name=search_value]') is an object rather than a value. The correct way to write it is $('input[name=search_value]').val()
The above is all the content described in this article, I hope you all like it.