1

我为表单输入字段创建了一个自动完成功能,允许用户将标签添加到它们的列表中。如果用户选择任何建议,我希望页面使用将新标签添加到已经存在的标签部分,而无需重新加载页面。

我希望这发生在 3 种情况下:

  1. 用户输入标签,忽略自动完成建议并按下回车键。
  2. 在输入查询的任何部分后,用户使用箭头键选择自动完成建议之一并按下回车键。
  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 并使用本教程进行自动完成。

4

1 回答 1

0

所以如果有人想知道,我的问题是有一个简单的解决方案,我一开始就不应该有。

我的输入标签嵌入在每次激活输入标签时提交的表单中。

通过防止用户按下回车时发生默认事件,我在方案 1 中停止了这个问题。但由于我无法在 jQuery 事件 .autocomplete() 中访问此事件,因此无法阻止它。

于 2012-06-22T15:08:46.490 回答