use jquery in a javascript function?
NEWBIE ALERT! (C# guy trying to learn jQuery for a new MVC app).
I modified some code I found on the web (Stephen Walther- http://bit.ly/bWxU3E) and modified it to use jQuery instead of the MSAjax library. It is a cascading dropdown list and some dummy data. Works great. Next, I try to put the function bindDropDownList() into a separate .js file so I can reuse it. Then it crashes because (I think) the function is all jQuery calls and it can only interpret javascript code. It doesn't rec开发者_运维百科ognize the jQuery methods of the objects. Am I totally off here, or is there a trick to make this work?
Here is my code snippet that works perfectly. The function bindDropDownList() is first. If I move it into it's own .js file and reference it, it crashes on the first line, targetDropDownList.empty(), with the error "object doesn't support this method".
<script type="text/javascript">
function bindDropDownList(parentKey, allOptions, targetDropDownList) {
targetDropDownList.empty();
for (var i = 0; i < allOptions.length; i++) {
option = allOptions[i];
if (option.ParentKey == parentKey) {
targetDropDownList.append($('<option/>').attr("value", option.Key).text(option.Name));
}
}
}
</script>
<script type="text/javascript">
$(document).ready(function () {
$('#StatesDropDown').change(function () {
var allOptions = $('#StatesDropDown').data('allOptions');
bindDropDownList(this.value, allOptions, $('#CitiesDropDown'));
});
$('#StatesDropDown').data('allOptions', [{ Key: 1, ParentKey: 1, Name: 'hello' }, { Key: 3, ParentKey: 1, Name: 'helloxxxx' }, { Key: 2, ParentKey: 2, Name: 'yelp'}]);
});
</script>
jQuery methods are JavaScript methods you can use them anywhere after they're defined, I think the issue is your external file being included before jQuery.
When using any library make sure it's included before you try and use its functions. To fix your issue take a look at your <script>
order and adjust accordingly, so that your file comes after the jQuery library.
I found the answer on another blog! I kept googling with terms like 'jquery in javascript' and various derivations of such to no avail. But then I googled 'jquery external file' and found the answer here: http://www.latentmotion.com/separating-jquery-functions-into-external-files-without-selectors/
In summary, you can't reference a jquery function in an external library file unless you wrap that function in a special jquery code block.
(function($){
yourFunction = function() {
$("body").append('See? It works.');
};
})(jQuery);
That solved it!
精彩评论