关于隐藏input输入内容问题

如果想通过获取焦点输入改变内容,type不能是hidden的

<input type="hidden" id="test"> // 这种是不行的,只能赋值 .val()修改;
<input type="type" id="test2"> // 想修改input框内容的需要type="text"

样式隐藏不能用display:none 和 visibility:hidden,因为这样写了就不能输入了,要用透明度和定位;

opacity: 0;
时间: 2024-10-07 06:30:16

关于隐藏input输入内容问题的相关文章

正则表达式控制Input输入内容 ,js正则验证方法大全

https://blog.csdn.net/xushichang/article/details/4041507 正则表达式控制Input输入内容 2009年04月01日 17:15:00 阅读数:21747 不能输入中文 <input type="text" name="textfield"  onkeyup="this.value=this.value.replace(/[^/da-z_]/ig,'');"/>只能输入 数字和下划

限制&lt;input&gt;输入内容 只允许数字 或者 字母

只能输入数字: 有回显 <input onkeyup="value=value.replace(/[^\d]/g,'')"> 只能输入数字:无回显 <input id="Text1" type="text" onkeypress="return IsNum(event)" /> <script language="javascript" type="text/java

HTML 中input输入内容即时计算事件

 <!DOCTYPE html> <html>  <head>   <meta charset="utf-8">   <meta name="auther" content="fq" />   <title>监听输入框值的即时变化 onpropertychange oninput</title>   <script type="text/javas

element table 在表格外的input输入内容实时过滤搜索表格内容显示

<template> <div class="table"> <div class="search-Box"> <el-input placeholder="请输入关键字" icon="search" class="search" v-model="search"></el-input> </div> <el-

shell脚本隐藏键盘输入内容

#!/bin/sh #Filename:inputPassword.sh echo -e "Enter password:" stty -echo read password #重新回显 stty echo echo echo 'your password is' ${password} echo Password read. 原文地址:https://www.cnblogs.com/yangxuming/p/11073289.html

用户输入电话号码,判断合理与否?要求,判断长度和判断输入内容是否合理 隐藏用户电话号码的中间4位

/** *用户输入电话号码,判断合理与否?要求,判断长度和判断输入内容是否合理 *隐藏用户电话号码的中间4位, *思路: *1.用正则判断  条件:长度11位判断有两种方法,正则{11}和length()==11 *2.输入内容用正则判断 *电话号的正则:      "(13)[0-9][\\d]{8}|(15)[0-9][\\d]{8}" */ public class StringDemo4 { public static void main(String[] args) { St

input 框输入内容延时1秒请求内容

项目中有个功能需要对话框输入内容后1秒执行请求获取模糊查询内容,为什么不即时查询呢?因为模糊查询东西很多呀,实时查询太耗性能了,所以改成当用户停止输入 1 秒后,再对用户输入的内容进行请求模糊查询. 实现起来其实很简单,定时器,设置1秒的请求,如果内容改变再1秒内,那么就清空,1秒后则自动执行请求. 下面来看demo: <div ng-controller='myCtrl'> <input ng-model="iValue" ng-change="value

使用iScroll时,input等不能输入内容的解决方法(share)

最近做移动平台的应用,使用iscroll使屏幕上下滑动.发现当使用iscroll后,input等不能输入内容了.只要在iscroll.js文件中加入如下代码就ok了. function allowFormsInIscroll(){ [].slice.call(document.querySelectorAll('input, select, button')).forEach(function(el){ el.addEventListener(('ontouchstart' in window)

回车提交表单input框的输入内容

代码如下: 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title></ti