0

我有一个进行搜索的链接。到目前为止,它正在工作。问题是当我希望通过点击“输入”按钮来完成搜索时。所以:

   $('#searchedText').on('keypress', function(e) {
    console.log("writed");
    if ($(this).val().trim().length > 2) {
      if (e.which == 13) {
        console.log("Passed condition");
        app.search = $('#searchedText').val();
        // HERE'S WHERE I NEED TO TRIGGER RATCHET's PUSH
      }
    }
  });

我试图更改 window.location - 不起作用 我试图触发点击事件 - 不起作用

有任何想法吗?

提前致谢。

4

1 回答 1

1

If anyone needs a solution for this, I finally found on the Ratchet's issues (github). If you wanna trigger a custom push, just do:

PUSH({url: 'YourUrl+hash', transition: 'slide-out'});

Regards

于 2015-05-11T22:41:23.567 回答