jQuery .replaceWith() 方法无效
jQuery .replaceWith() method not working
我在使用 .replaceWith()
时遇到问题,它适用于第一个模糊,但不适用于第二个,这是我的代码:
$("#wilaya").blur(function () {
$("#wilayaRow .tdrequired").css("color", "#333");
if ($("#wilaya").val() !== "Selectionnez une wilaya...") {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/check-mark-md.png' width='20px' height='28px'></img>");
}
else {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/red-wrong-cross-md.png' width='20px' height='28px'></img>");
}
});
这是 html 部分:
<table>
<tr id="wilayaRow">
<td class="tdtitle">
<label for="wilaya">Wilaya d'immatriculation</label>
</td>
<td class="tdinput">
<select name="wilaya" id="wilaya">
<option>Selectionnez une wilaya...</option>
<option>Khalil</option>
<option>Moh</option>
</select>
</td>
<td class="tdrequired">
<label>*</label>
</td>
</tr>
...
</table>
提前感谢您的帮助:)
这是我刚刚实现的工作 jQuery 代码:
$("#wilaya").blur(function () {
$("#wilayaRow .tdrequired").css("color", "#333");
if ($("#wilaya").val() !== "Selectionnez une wilaya...") {
$("#wilayaRow .tdrequired label").replaceWith("<label><img src='../../Images/check-mark-md.png' width='20px' height='28px'></img></label>");
}
else {
$("#wilayaRow .tdrequired label").replaceWith("<label><img src='../../Images/red-wrong-cross-md.png' width='20px' height='28px'></img></label>");
}
});
如果我必须用图片替换标签,我必须把它放在标签中,这样下一次替换才有可能。否则,将找不到 label 标记(因为它不再存在),也不会被图像或其他任何内容替换。
同样使用:
$("#wilaya").prop("selectedIndex") === 0
作为条件较好。
$("#wilaya").blur(function () {
$("#wilayaRow .tdrequired").css("color", "#333");
if ($("#wilaya").val() !== 0) {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/check-mark-md.png' width='20px' height='28px'></img>");
}
else {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/red-wrong-cross-md.png' width='20px' height='28px'></img>");
}
});
这是 jquery 部分。
<table>
<tr id="wilayaRow">
<td class="tdtitle">
<label for="wilaya">Wilaya d'immatriculation</label>
</td>
<td class="tdinput">
<select name="wilaya" id="wilaya">
<option value="0">Selectionnez une wilaya...</option>
<option value="1">Khalil</option>
<option value="2">Moh</option>
</select>
</td>
<td class="tdrequired">
<label>*</label>
</td>
</tr>
</table>
这是 html 部分。
试用。
希望对您有所帮助。
我在使用 .replaceWith()
时遇到问题,它适用于第一个模糊,但不适用于第二个,这是我的代码:
$("#wilaya").blur(function () {
$("#wilayaRow .tdrequired").css("color", "#333");
if ($("#wilaya").val() !== "Selectionnez une wilaya...") {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/check-mark-md.png' width='20px' height='28px'></img>");
}
else {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/red-wrong-cross-md.png' width='20px' height='28px'></img>");
}
});
这是 html 部分:
<table>
<tr id="wilayaRow">
<td class="tdtitle">
<label for="wilaya">Wilaya d'immatriculation</label>
</td>
<td class="tdinput">
<select name="wilaya" id="wilaya">
<option>Selectionnez une wilaya...</option>
<option>Khalil</option>
<option>Moh</option>
</select>
</td>
<td class="tdrequired">
<label>*</label>
</td>
</tr>
...
</table>
提前感谢您的帮助:)
这是我刚刚实现的工作 jQuery 代码:
$("#wilaya").blur(function () {
$("#wilayaRow .tdrequired").css("color", "#333");
if ($("#wilaya").val() !== "Selectionnez une wilaya...") {
$("#wilayaRow .tdrequired label").replaceWith("<label><img src='../../Images/check-mark-md.png' width='20px' height='28px'></img></label>");
}
else {
$("#wilayaRow .tdrequired label").replaceWith("<label><img src='../../Images/red-wrong-cross-md.png' width='20px' height='28px'></img></label>");
}
});
如果我必须用图片替换标签,我必须把它放在标签中,这样下一次替换才有可能。否则,将找不到 label 标记(因为它不再存在),也不会被图像或其他任何内容替换。
同样使用:
$("#wilaya").prop("selectedIndex") === 0
作为条件较好。
$("#wilaya").blur(function () {
$("#wilayaRow .tdrequired").css("color", "#333");
if ($("#wilaya").val() !== 0) {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/check-mark-md.png' width='20px' height='28px'></img>");
}
else {
$("#wilayaRow .tdrequired label").replaceWith("<img src='../../Images/red-wrong-cross-md.png' width='20px' height='28px'></img>");
}
});
这是 jquery 部分。
<table>
<tr id="wilayaRow">
<td class="tdtitle">
<label for="wilaya">Wilaya d'immatriculation</label>
</td>
<td class="tdinput">
<select name="wilaya" id="wilaya">
<option value="0">Selectionnez une wilaya...</option>
<option value="1">Khalil</option>
<option value="2">Moh</option>
</select>
</td>
<td class="tdrequired">
<label>*</label>
</td>
</tr>
</table>
这是 html 部分。 试用。 希望对您有所帮助。