两个文本框内容合二为一,通过按钮实现
Posted Xander
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个文本框内容合二为一,通过按钮实现相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>Copy Value</
title
>
</
head
>
<
body
>
<
style
>
</
style
>
<
input
type
=
"text"
name
=
""
id
=
"J_From"
>
<
input
type
=
"button"
value
=
"添加"
id
=
"J_Add"
>
<
input
type
=
"text"
name
=
""
id
=
"J_To"
readonly>
<
script
>
(function(){
var f = document.getElementById(‘J_From‘),
t = document.getElementById(‘J_To‘),
b = document.getElementById(‘J_Add‘);
b.onclick = function() {
var val = f.value;
val = ‘+‘ + val;
t.value = val;
};
})();
</
script
>
</
body
>
</
html
>
以上是关于两个文本框内容合二为一,通过按钮实现的主要内容,如果未能解决你的问题,请参考以下文章
wxpython,有两个文本框,三个按钮控件,按下按钮便可以将文本框一中的内容复制到文本二中
两个文本框,一个按钮,js怎样判断,点击按钮时,两个文本框都为空,则提示必填一个,两个都有内容?
编写一个小程序,在小程序的容器中有两个按钮和一个文本框,单击"确定"按钮时,文本框显示按钮的名字