我的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(){ })
。
感谢。