Sử dụng công cụ chọn CSS:read-write để chọn các phần tử không có thuộc tính "readonly".
Ví dụ
Bạn có thể thử chạy mã sau để triển khai:bộ chọn đọc-ghi
<!DOCTYPE html> <html> <head> <style> input:read-write { background-color: blue; color: white; } </style> </head> <body> <form> Subject: <input type = "text" name = "subject" value = "Java"><br> Student: <input type = "text" name = "student" readonly value = "Amit"><br> </form> </body> </html>