我创建了一个jQuery插件,并从单独的js
文件中包含它。
在我的.cshtml文件中,我成功地从我的插件中调用了一个自定义方法并获得输出。
问题是我在使用IDE(Visual Studio 2017)时无法获得建议的功能。
我希望IntelliSense在提示bindItems
后建议$ddl.
,
但它没有。
(function ($) {
$.fn.bindItems= function (option1,option2) {
//adding items in ddl here;
}
}(jQuery));

<select id="ddltest" class="dropdownclass" name="drpSpendChartId">
</select>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function () {
BindDDL();
});
function BindDDL() {
var $ddl = $("#ddltest");
$ddl.bindItems('my', 'Plugin'); //here when dot(.) pressed after '$ddl' the 'bindItems' method does not list under intelligence dropdown list.
}
</script>
&#13;