我需要以下帮助。
解决此问题的唯一方法是可以定位该类。否则我正在尝试将无法正常工作。 (我需要在输入字段后面附加一些按钮)
cms系统为输入类本身生成代码。 (显然是在加载屏幕上添加的)
某种程度上,现在有一种方法可以用jquery来定位…?还是我只是想念一些技巧?
我的jQuery代码:
$(".theInput").append($addButtons);
当我用其他类更改
.theInput
时,所有方法都可以工作,但是.theInput不能正常工作。需要帮忙
由cms系统自动生成,我完全无法控制它的调整。
<td class="system">
<div class="cell">
<input onchange="some long code" class="theInput" type="text" value="1" /></div>
<div class="cell">
<input onchange="some long code" class="theInput" type="text" value="1" /></div>
<div class="cell">
<input onchange="some long code" class="theInput" type="text" value="1" /></div>
and so on.
</td>
最佳答案
我不确定“输入后”的意思,但是您无法真正在输入后附加内容。 Append将元素添加到内部,并且没有内部可以输入。如果要在输入后添加一些内容,可以执行以下操作:
$(".theInput").after($addButtons);