在js中的textarea中替换/添加字符串

发布于 2024-11-27 23:07:51 字数 497 浏览 0 评论 0原文

我有一个文本区域和一些按钮。单击每个按钮我必须执行以下操作:

  1. 检查文本区域是否包含某些文本 XXX。
  2. 如果包含则将其删除。
  3. 如果没有,则添加它。

我怎样才能在 JavaScript 中做到这一点?我已尝试以下操作,但它不起作用:

function addRecip(con){
    var myvalue = document.getElementById("textarea1").value;
    if(myvalue.indexof(con+",")==-1){
        document.getElementById("textarea1").value = myvalue + con + ",";
    } else {
        document.getElementById("textarea1").value = myvalue.replace(con + ",","");
    }
}

I have a textarea and some buttons. Onclick of each button I have to do following:

  1. Check if textarea contains some text XXX.
  2. If contains then remove it.
  3. If not then add it.

How can I do this in javascript? I have tried following but it does not work:

function addRecip(con){
    var myvalue = document.getElementById("textarea1").value;
    if(myvalue.indexof(con+",")==-1){
        document.getElementById("textarea1").value = myvalue + con + ",";
    } else {
        document.getElementById("textarea1").value = myvalue.replace(con + ",","");
    }
}

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

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

发布评论

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

评论(1

笑梦风尘 2024-12-04 23:07:51

indexof 实际上应该拼写为 indexOf,并且 JavaScript 区分大小写。

这有效:

function addRecip(con){
    var myvalue = document.getElementById("textarea1").value;
    if(myvalue.indexOf(con+",")==-1){
        document.getElementById("textarea1").value = myvalue + con + ",";
    } else {
        document.getElementById("textarea1").value = myvalue.replace(con + ",","");
    }
}

indexof is actually meant to be spelled indexOf, and JavaScript is case-sensitive.

This works:

function addRecip(con){
    var myvalue = document.getElementById("textarea1").value;
    if(myvalue.indexOf(con+",")==-1){
        document.getElementById("textarea1").value = myvalue + con + ",";
    } else {
        document.getElementById("textarea1").value = myvalue.replace(con + ",","");
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文