What are some good jQuery Resources along with some gotchas when using it with ASP.Net?
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- Carriage Return (ASCII chr 13) is missing from tex
- Generic Generics in Managed C++
- How to fix IE ClearType + jQuery opacity problem i
One thing to note is that if you use WebMethods for Ajax, the response values will be returned wrapped in an object named 'd' for security reasons. You will have to unwrap that value, which is usually not a problem, unless you are using a component (such as the jqGrid plugin) that relies upon jquery ajax. To get around that, I just changed the code in the grid that called ajax and inserted a bit of code to unwrap. I do plan on sending in some code to the jquery crew to see if it can be accepted for future versions.
The next thing, as was mentioned previously, is the ids. If you have the time and inclination, I actually subclassed all of the HTML controls to make participating in the NamingContainer optional, like this:
And then the helper object (to prevent writing the same code in each object) looks like this:
Rick Strahl's Blog is a good place to start. He has quite a few jQuery posts.
ASP.Net's autogenerated id's make using jQuery's selector syntax somewhat difficult.
Two easy ways around this problem:
$('[id$=myid]')