หากคุณรวมไฟล์ jQuery ที่มีคำอธิบายประกอบไว้ในซอร์สของคุณสำหรับ intellisense เท่านั้นฉันขอแนะนำให้ใช้ประโยชน์จากคำสั่งพรีโปรเซสเซอร์เพื่อลบออกจากมุมมองของคุณเมื่อคุณคอมไพล์ Ala:
<% #if (false) %>
<!-- This block is here for jquery intellisense only. It will be removed by the compiler! -->
<script type="text/javascript" src="Scripts/jquery-1.3.2-vsdoc.js"></script>
<% #endif %>
จากนั้นในภายหลังในรหัสของคุณคุณสามารถจริงๆอ้างอิง jQuery สิ่งนี้มีประโยชน์เมื่อใช้Google AJAX Libraries APIเพราะคุณจะได้รับประโยชน์ทั้งหมดที่ Google มอบให้คุณรวมถึง Intellisense
นี่คือตัวอย่างการใช้ Libraries API:
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.3.2", { uncompressed: false });
</script>