You can use .length after the selector to see if it matched any elements, like this:

if($("#" + name).length == 0) {
  //it doesn't exist
}

The full version:

$("li.friend").live('click', function(){
  name = $(this).text();
  if($("#" + name).length == 0) {
    $("div#chatbar").append("<div class='labels'><div id='" + name + "' style='display:none;'></div>" + name + "</div>");
  } else {
    alert('this record already exists');
  }
});

Or, the non-jQuery version for this part (since it's an ID):

$("li.friend").live('click', function(){
  name = $(this).text();
  if(document.getElementById(name) == null) {
    $("div#chatbar").append("<div class='labels'><div id='" + name + "' style='display:none;'></div>" + name + "</div>");
  } else {
    alert('this record already exists');
  }
});

Jquery判断某个标签Id是否存在_ruanhongbiao的博客-CSDN博客_ ...

https://blog.csdn.net/qappleh/article/details/80163295

2018年5月2日 ... 在项目中遇到需要判断某个div元素是否id这个属性的需求使用jQuery 对象的属性length 来判断,如果&gt; 0 就存在。或者if($("#id")[0]){} else ...

javascript - How to find if div with specific id exists in jQuery? - Stack ...

https://stackoverflow.com/questions/3373763/how-to-find-if-div-with-specific-id-exists-in-jquery

You can use .length after the selector to see if it matched any elements, like this: if($("#" + name).length == 0) { //it doesn't exist }. The full version:

jQuery 判断id 或元素是否存在| 菜鸟教程

https://www.runoob.com/w3cnote/jquery-check-id-is-exists.html

我们可以通过呢jQuery 的length 属性判断id 是否存在: 实例[mycode3 type='js'] if ($('#myElement').length > 0) { // 存在} [/mycode3] 尝试一下» 也可以写成插件 ...

jquery如何判断id是否存在- 问答- 亿速云

https://www.yisu.com/ask/6817.html

2021年5月22日 ... 使用jquery判断id属性是否存在的方法:1.新建html项目,引入jquery;2 ... 通过id获取标签对象,使用if语句判断是否存在;. jquery如何判断id是否存在.

How do you check if a selector matches something in jQuery ...

https://stackoverflow.com/questions/299802/how-do-you-check-if-a-selector-matches-something-in-jquery

As an ID can only exists once, and duplicates are ignored by JS and jQuery, this may lead to confusion if you do not explain that it is a 0 or 1 situation :) – ...

Jquery判断$("#id")获取的对象是否存在的方法_zh521zh的博客 ...

https://blog.csdn.net/zh521zh/article/details/51124329

2016年4月11日 ... Jquery判断$("#id")获取的对象是否存在的方法一、判断对象对象是否存在如果是下面的jQuery 代码判断一个对象是否存在,是不能用的复制代码代码 ...

jquery如何根据id判断元素是否存在- web开发- 亿速云

https://www.yisu.com/zixun/697227.html

2022年5月26日 ... 判断方法:1、通过id属性值获取指定元素,语法“$("#id值")”,会返回一个包含指定元素的jQuery对象;2、使用“元素对象.length>0”语句判断指定jQ对象中元素 ...

Jquery如何判断某个标签Id是否存在-js教程-PHP中文网

https://www.php.cn/js-tutorial-464835.html

2020年11月30日 ... jquery判断某个标签Id是否存在的方法:使用jQuery对象的属性length来判断,如果【>0】就存在,代码为【if($("#id")[0]){} else {}】。

.hasClass() | jQuery API Documentation

https://api.jquery.com/hasclass/

<div id="mydiv" class="foo bar"></div>. The .hasClass() method will return true if the class is assigned to an element, even if other classes also are. For ...

Set Focus if Email id Exists - jQuery Forum

https://forum.jquery.com/topic/set-focus-if-email-id-exists

If a member is already registered , i want JQUERY to display 'Member ... $query= sprintf("select * FROM member where email='%s' ", $id); ...

javascript 判断id是否存在?-CSDN社区

https://bbs.csdn.net/topics/290053313

2008年12月14日 ... 判断html标签是否存在,jquery怎么判断标签元素是否存在jquery判断页面标签元素是否存在在传统的Javascript里,当我们对某个页面元素进行某种操作前,最 ...

jquery如何判断是否包含某个id元素- web开发- 亿速云

https://m.yisu.com/zixun/625304.html

2022年1月14日 ... 方法:1、利用attr()方法获取指定元素的id属性值,语法为“$(元素).attr('id')”;2、利用if语句和“==”运算符判断是否包含某个id即可,语法为“if(id属性值 ...

jquery判断是否某个id_百度知道

https://zhidao.baidu.com/question/522010831919929405.html

问题描述笼统,大概分两种情况吧:. 判断是否存在id某个值的元素:. if ($('#myId').length) { // 存在这个元素,其id为:myId }. 判断某个元素是否某个id值:.

js判断数组中是否存在某个值- SegmentFault 思否

https://segmentfault.com/a/1190000014202195

2018年4月5日 ... 参数:thisArg(可选)从该索引处开始查找searchElement。如果为负值,则按升序从array.length + fromIndex 的索引开始搜索。默认为0。 {代码...}

check if element with id exists jquery Code Example

https://www.codegrepper.com/code-examples/javascript/check+if+element+with+id+exists+jquery

“check if element with id exists jquery” Code Answer's · jquery check if element exists · jquery test div exists · check element exist in jquery · jquery check if ...

How to Check If an Element Exists in jQuery

https://www.tutorialrepublic.com/faq/how-to-check-if-an-element-exists-in-jquery.php

You can use the jQuery .length property to determine whether an element exists or not in case if you want to fire some event only if a particular element ...