Right to left Text HTML input

前端 未结 8 2286
名媛妹妹
名媛妹妹 2020-11-27 18:37

For my website, i need to provide arabic support. Part of it is to provide input textboxes where when user types in, the new characters have to be appended to the left and t

8条回答
  •  长情又很酷
    2020-11-27 19:27

    function rtl(element)
    {   
        if(element.setSelectionRange){
            element.setSelectionRange(0,0);
        }
    }
    
    
    
    
    
    

    This code will do.

提交回复
热议问题