php – jQuery id选择器无法正常工作.在ID

前端之家收集整理的这篇文章主要介绍了php – jQuery id选择器无法正常工作.在ID前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to select html nodes by ID with jquery when the id contains a dot?8个
我的HTML代码如下.
<div id="chatBox_dipesh.parmar" class="chatBox">
  //html markup which is validated
</div>

在上面的代码中dipesh.parmar div动态添加.

我正在使用以下代码访问它.

$("#chatBox_"+chatBoxtitle).show();

其中chatBoxtitle是dipesh.parmar,但它没有选择div.

是吗不适用于ID.?

我的jQuery被加载并且它与其他库没有冲突,并且还将它包装到$(function(){})中.

谢谢.

逃离点.

看到这个:
Direction

原文链接:https://www.f2er.com/php/137697.html

猜你在找的PHP相关文章