我正在构建一个ASP.NET MVC站点,我需要一个标记编辑器,类似于Stack Overflow上使用的标记编辑器。我已经查明了如何使用jQuery UI完成必要的自动完成,但是我遇到了一个问题:当我将脚本放在外部.js
文件中时,它不会执行
这是我的test.html
:
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
<script src="http://jqueryui.com/jquery-1.4.2.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.core.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.widget.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.position.js"></script>
<script src="http://jqueryui.com/ui/jquery.ui.autocomplete.js"></script>
<script src="jquery.tagautocomplete.js"></script>
<script>
$(function() { bindAutoTagComplete('#birds'); })
</script>
</head>
<body>
<label for="birds">Birds: </label>
<input id="birds" size="50" />
</body>
</html>
这是jquery.tagautocomplete.js
:
function bindAutoTagComplete(item, otherRootDomain)
{
function split( val ) {
return val.split( / \s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$(item).autocomplete({
source: function( request, response ) {
$.getJSON('http://jqueryui.com/demos/autocomplete/search.php', {
term: extractLast( request.term )
}, response );
},
search: function() {
// custom minLength
var term = extractLast( this.value );
if ( term.length < 2 ) {
return false;
}
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( " " );
return false;
}
});
}
您认为可能导致此问题的原因是什么?我可能在.js
文件中遗漏了一些关闭的parantheses / braces ......
提前致谢!
答案 0 :(得分:1)
您需要在页面准备好后附加该事件。 #birds在当前运行时不存在。
像
这样的东西<script>
$(document).ready( function(){ bindAutoTagComplete('#birds'); } );
</script>