Is it possible to place a link inside <input> field?

后端 未结 9 895
温柔的废话
温柔的废话 2021-01-03 00:23

Is it possible to place links on Login and on Register here?



        
9条回答
  •  遥遥无期
    2021-01-03 00:46

    You could add a function call when clicking on it:

    
    
    ...
    function navigate(){
        window.open("my-url",'_blank');
    }
    

提交回复
热议问题