似乎无法将两个文本输入绑定在一起

发布于 2024-12-07 05:03:12 字数 513 浏览 2 评论 0原文

我有两个表单输入,我需要它们具有匹配的字段内容。这意味着如果我在一个字段中输入文本,则在另一字段中输入的文本完全相同(它们采用不同的形式)。

我认为我可以使用 .bind() 来做到这一点,但我的脚本不允许我的文本绑定到另一个输入。

var inp = $("#text1");

if ("onpropertychange" in inp)
inp.attachEvent($.proxy(function () {
    if (event.propertyName == "value")
        $("div").text(this.value);
}, inp));
 else
  inp.addEventListener("input", function () { 
    $("#text2").text(this.value);
}, false);



<input type="text" id="text1" />
<input type="text" id="text2" />

I have two form inputs that I need have matching field content. Meaning if I enter text in one field it is the exact same on the other field (they are in separate forms).

I thought I could use .bind() to do it but my script would not allow my text to bind to another input.

var inp = $("#text1");

if ("onpropertychange" in inp)
inp.attachEvent($.proxy(function () {
    if (event.propertyName == "value")
        $("div").text(this.value);
}, inp));
 else
  inp.addEventListener("input", function () { 
    $("#text2").text(this.value);
}, false);



<input type="text" id="text1" />
<input type="text" id="text2" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

并安 2024-12-14 05:03:12

如果您不想逐个字母地编辑它,请将 keyup 更改为 changejsfiddle

var $inputs = $('#input1, #input2');

$inputs.keyup(function(){
    $inputs.val($(this).val());
});

change keyup to change if you don`t want to edit it letter by letter; jsfiddle there

var $inputs = $('#input1, #input2');

$inputs.keyup(function(){
    $inputs.val($(this).val());
});
澜川若宁 2024-12-14 05:03:12
$("#text1").change({
  $("#text2").val(this.val());
});
$("#text1").change({
  $("#text2").val(this.val());
});
骷髅 2024-12-14 05:03:12

这个怎么样?

$('#input01').keyup(function() {
    value = $(this).val();
    $("#input02").val(value);
});

What about this?

$('#input01').keyup(function() {
    value = $(this).val();
    $("#input02").val(value);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文