作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试复制表单输入条目。是否可以通过 Javascript 使用 ID 或类指定特定的输入和输出字段?
在这个例子中,我试图从 id1 复制条目并将其输出到 uniqueid。但是,所有字段都会受到影响。如何指定 ID?
<form>
<input type="text" id="id1" name="" value="" />
<input type="text" id="id2" name="" value="" />
<input type="text" id="uniqueid" value="">
</form>
var $unique = $('input[type="text"]').mousemove(function(){
$unique.val(this.value);
});
最佳答案
我认为您的电线在这里有点交叉。您可以使用 #
选择器按 ID 选择元素。
让我们把它分开来让它更易读:
var $id1 = $("#id1"); //Store id1 input
var $unique = $("#uniqueid"); //Store uniqueid input
$id1.mousemove(function() { //On mousemove event of id1
$unique.val($(this).val()); //Set unique's value to id1's value
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
<input type="text" id="id1" name="" value="" />
<input type="text" id="id2" name="" value="" />
<input type="text" id="uniqueid" value="">
</form>
作为d4nyll在下面的评论中提到,如果您只是想在 id1
更改时更新 uniqueid
字段,那么您应该更改您的 .mousemove()
改为 .keyup()
。
关于javascript - 重复的表单字段输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44594508/
我尝试通过正则表达式将文本中的单引号更改为双引号。 (单字)示例:我走了。 You gona fly to planet 'Ziqtos' => 我需要在 I'm 中保留单引号,并在 You gona
我正在构建一个 API,其中大部分将包含 JSON 和 HTML 内容。但是一些非常具体的端点只呈现 true 或 false,并且还在 POST 中接受 true 或 false。这是请求或响应的整
我是一名优秀的程序员,十分优秀!