我之前问过这个问题:但我需要在jsf中使用它。我在我的应用程序中使用 primefaces 库。我的代码在这里:
Jsf: <h:outputScript library="primefaces" name="jquery/jquery.js" target="head" />
<script type="text/javascript">
$ = jQuery; $(document).ready(function() {
$("p:inpuText").each(function () {
comp(this);
});
$("[required='true']").blur(function () {
comp(this);
});
$("[required='true']").keyup(function () {
comp(this);
});
$("[required='true']").click(function () {
comp(this);
});
function comp(a) {
if ($(a).val() != "")
$(a).css({
"border": "1px solid #ccc !important",
"background": "#FFF"
});
else $(a).css({
"border": "1px solid #FF0000 !important",
"background": "#FFEFFF"
});
}
});
我想将 css 设置为清空必填字段。