我想用javascript传递来自另一个值的输入中的值

时间:2021-01-20 14:26:57

Hello thats what i have already tried https://jsfiddle.net/arispapapro/1qbjd36c/2/

你好,我已经尝试过https://jsfiddle.net/arispapapro/1qbjd36c/2/

  <form>
    <input type="text" name="no301" class="form-control" id="no301" placeholder="">
    <input type="text" name="no307" class="form-control" id="no307" placeholder="">
    </form>

    document.getElementById("no307").value = $('no301').val();

1 个解决方案

#1


0  

You can do like this using pure Javascript.

你可以使用纯Javascript这样做。

var no307 = document.getElementById("no307");
var no301 = document.getElementById("no301");



no307.onchange = function(){
  no301.value = no307.value;
}

no301.onchange = function(){
  no307.value = no301.value;
}

Here is the updated fiddle

这是更新的小提琴

If you are using jquery then you can do like this.

如果您使用的是jquery,那么您可以这样做。

$("#no301").on('change',function(){

    $("#no307").val( $(this).val() ); 

})


$("#no307").on('change',function(){

    $("#no301").val( $(this).val() ); 

})

#1


0  

You can do like this using pure Javascript.

你可以使用纯Javascript这样做。

var no307 = document.getElementById("no307");
var no301 = document.getElementById("no301");



no307.onchange = function(){
  no301.value = no307.value;
}

no301.onchange = function(){
  no307.value = no301.value;
}

Here is the updated fiddle

这是更新的小提琴

If you are using jquery then you can do like this.

如果您使用的是jquery,那么您可以这样做。

$("#no301").on('change',function(){

    $("#no307").val( $(this).val() ); 

})


$("#no307").on('change',function(){

    $("#no301").val( $(this).val() ); 

})