我为表单输入字段创建了一个自动完成功能,允许用户将标签添加到它们的列表中。如果用户选择任何建议,我希望页面使用将新标签添加到已经存在的标签部分,而无需重新加载页面。
我希望这发生在 3 种情况下:
- 用户输入标签,忽略自动完成建议并按下回车键。
- 在输入查询的任何部分后,用户使用箭头键选择自动完成建议之一并按下回车键。
- 在输入查询的任何部分后,用户用鼠标单击自动完成建议之一。
我已经能够使方案 1 完美地工作。但是,场景 1 和 2 使页面重新加载,并且仍然没有将标签添加到列表中。
场景 1 和 2 都由同一个函数调用:
$j("#addTag").autocomplete({
serviceUrl:'/ac',
onSelect: function(val, data){
addTag(data);
}
});
这是 addTag() 的代码:
function addTag(tag){
var url = '/addTag/' + tag;
//Call the server to add the tag/
$j.ajax({
async: true,
type: 'GET',
url: url,
success:function(data){
//Add the tag to the displayed list of already added tags
reloadTagBox(data);
},
dataType: "json"
});
//Hide the messages that have been displayed to the user
hideMessageBox();
}
场景一代码:
function addTagByLookup(e, tag){
if(e && e.keyCode == 13)
{
/*This stops the page from reloading (when the page thinks
the form is submitted I assume).
*/
e.preventDefault();
//If a message is currently being displayed to the user, hide it
if ($j("#messageBox").is(":visible") && $j("#okayButton").is(":visible")){
hideMessageBox();
}
else{
//Give a message to the user that their tag is being loaded
showMessageBox("Adding the tag <strong>"+tag+"</strong> to your station...",'load');
//Check if the tag is valid
setTimeout(function(){
var url = '/checkTag/' + tag;
var isTagValid = checkTag(tag);
//If the tag is not vaid, tell the user.
if (isTagValid == false){
var message = "<strong>"+tag+"</strong>"+
" was not recognized as a valid tag or artist. Try something else.";
//Prompt the user for a different tag
showMessageBox(message, 'okay');
}
//If the tag is valid
else{
addTag(tag);
}
}, 1000);
}
}
}
我知道我在场景 1 中将 e.preventDefault 功能用于普通表单提交,但我似乎无法使其适用于其他场景,我什至不确定这是真正的问题。
我使用 pylons 作为 MVC 并使用本教程进行自动完成。