Method 1: Set the readonly property to true.
INPUT value=readonly readOnly
Method 2: Set the disabled property to true.
INPUT disabled value=disabled
Method 3: Blur the object immediately when focusing, so that it cannot gain focus.
INPUT onfocus=this.blur() value=onfocus=this.blur()