我想創建一個表單,允許用戶輸入值,訂單的形式。加載表單時,需要突出顯示所有沒有任何內容的行,或者值超過100的行,然後在糾正時忽略它們。jQuery的幫助 - 驗證
此外,還有一個提交按鈕 - 這需要在任何的文本框突出
這是我到目前爲止的代碼被禁用 - 沒有任何人有什麼想法?
$(':text').focusin(function() {
var inp = $(this).val();
if (inp > 100) {
$(this).css('background-color', 'red');
}
if (inp.length < 1) {
$(this).css('background-color', 'red');
}
if (inp.length > 0 && inp <= 100) {
$(this).css('background-color', 'white');
}
});
$(':text').change(function() {
var inp = $(this).val();
if (inp > 100) {
$(this).css('background-color', 'red');
}
if (inp.length < 1) {
$(this).css('background-color', 'red');
}
if (inp.length > 0 && inp <= 100) {
$(this).css('background-color', 'white');
}
});
那麼,有什麼不工作?這和PHP有什麼關係? – ernie
它工作正常,但我只是想知道是否有可能讓他們預先突出顯示時,窗體加載 而且也有一個提交按鈕被禁用,如果他們仍然高亮 我想我加了PHP標籤意外 - 我的壞!對不起 –