Giter Club home page Giter Club logo

knotty-issues's People

Watchers

 avatar  avatar

knotty-issues's Issues

2.当form中只有一个input框时,按enter键会自动触发表单提交

现象:

如题

原因:

浏览器默认行为

解决方法:

再加一个隐藏的input

<form action="">
        <input type="text">
        <input type="text" style="display:none">
</form>

有人问那我加上hidden的input行不行?

<form action="">
        <input type="text">
        <input type="hidden">
</form>

答案:不行

1.在ios上富应用web,路由回退的时候页面白屏,当手指轻轻触发滚动,页面正常渲染!

环境:

  • ios
  • vue vue-router

现象:

在一个很长的页面A,将A滚动到底部,点击A底部的调准到B页面的路由.
跳转到B页面后,点击返回按钮,此时网页白屏.
当手指轻轻触发下滚动,白屏消失.

解决方案:

  • 安装了vue-router 是可以按照此方案统一处理
const router = new Router({
    mode: 'history',
    routes,
    scrollBehavior(to, from, savedPosition) {
        return new Promise((resolve, reject) => {
            setTimeout(() => {
                resolve({x: 0, y: 1});
            },0);
        });
    }
});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.