0

我正在研究javascript。

分别考虑两个文本框 tb1 和 tb2

tb1 中存在的值应根据条件复制到 tb2 中。如果条件为真,则无需复制任何内容。如果条件为假,则 tb1 中的值也应初始化为 tb2。可能吗..

4

3 回答 3

1
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
    <div>
        <span>tb1:</span>
        <input id="tb1" type="text" value="TextBox Value 1"/>
    </div>
    <div>
        <span>tb2:</span>
        <input id="tb2" type="text" value="TextBox Value 2"/>
    </div>
    <input type="button" onclick="exchange()" value="Exchange">
    <script type="text/javascript">
        function exchange(){
            var tb1 = document.getElementById('tb1');
            var tb2 = document.getElementById('tb2');
            var condition = function(){
                return true;
            };

            if(condition()){
                var buf = tb1.value;
                tb1.value = tb2.value;
                tb2.value = buf;
            }
        }
    </script>
</body>
</html>
于 2013-06-14T13:31:57.277 回答
1

这是一个可以满足您需要的功能:

function compareAndCopy() {
    var tb1 = document.getElementById("tb1");
    var tb2 = document.getElementById("tb2");

    if (tb1.value == "hey") {
        tb2.value = tb1.value;
    } else {
        alert("No match");
    }
}

//Add a handler
document.getElementById("tb1").onblur = compareAndCopy;

它目前正在检查是否tb1等于hey模糊。

工作演示:http: //jsfiddle.net/4L5pE/

于 2013-06-14T13:35:43.043 回答
0

是的,这是可能的。您需要定义您希望它何时发生。onkeypress 或第一个文本框的 onblur 您可以调用一个验证您的条件然后复制值的函数。

tb1.onblur(function(){ if(condition) tb2.value = tb1.value }

上面的代码不起作用,它只是一个伪代码。

于 2013-06-14T13:04:51.867 回答