使用 jquery 将 class 添加到带有 class 的 div 内的字体
add a class to font inside a div with a class using jquery
我有以下 html 在 power 门户中呈现,它导致破坏了输入组的格式。
<div class="control">
<div class="input-group" role="none">
<font size="3" style="position: relative;">
<input name="ctl00$ContentContainer$WebFormControl_3596f2cdce74ec11894300224812"....>
</font>
</div>
<div>
我已经尝试在开发工具中进行调整,如果我发现如果将“输入组”的 class 应用于字体属性,则所有格式都很好,如果它如下所示。
<font size="3" class="input-group" style="position: relative;"></font>
我不确定如何使用 jQuery 在 dom 中找到字体属性。
我已经在下面尝试过了,但它似乎什么也没做
$(document).ready(function () {
$('#WebFormPanel').each(function(e) {
let divinputgroup = $(this).find("input-group");
if(divinputgroup.length){
$("font").addClass("input-group");
}
})
});
$(document).ready(function () {
$('#WebFormPanel').each(function(e) {
let divinputgroup = $(this).find(".input-group");
if(divinputgroup.length){
$("font").addClass("input-group");
}
})
});
你可以用这个,也可以给字体class,方便使用
我有以下 html 在 power 门户中呈现,它导致破坏了输入组的格式。
<div class="control">
<div class="input-group" role="none">
<font size="3" style="position: relative;">
<input name="ctl00$ContentContainer$WebFormControl_3596f2cdce74ec11894300224812"....>
</font>
</div>
<div>
我已经尝试在开发工具中进行调整,如果我发现如果将“输入组”的 class 应用于字体属性,则所有格式都很好,如果它如下所示。
<font size="3" class="input-group" style="position: relative;"></font>
我不确定如何使用 jQuery 在 dom 中找到字体属性。 我已经在下面尝试过了,但它似乎什么也没做
$(document).ready(function () {
$('#WebFormPanel').each(function(e) {
let divinputgroup = $(this).find("input-group");
if(divinputgroup.length){
$("font").addClass("input-group");
}
})
});
$(document).ready(function () {
$('#WebFormPanel').each(function(e) {
let divinputgroup = $(this).find(".input-group");
if(divinputgroup.length){
$("font").addClass("input-group");
}
})
});
你可以用这个,也可以给字体class,方便使用