Thuộc tính trình giữ chỗ URL đầu vào HTML DOM đặt / trả về một chuỗi thường được sử dụng để cung cấp gợi ý cho người dùng về văn bản đầu vào sẽ trông như thế nào.
Cú pháp
Sau đây là cú pháp -
- Giá trị chuỗi trả về
inputURLObject.placeholder
- Đặt trình giữ chỗ sang stringValue
inputURLObject.placeholder = stringValue
Ví dụ
Hãy để chúng tôi xem một ví dụ về thuộc tính trình giữ chỗ URL đầu vào -
<!DOCTYPE html> <html> <head> <title>Input URL placeholder</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>URL-placeholder</legend> <label for="URLSelect">URL: <input type="url" id="URLSelect"> </label> <input type="button" value="Get an Example" onclick="setPlaceholder()"> </fieldset> </form> <script> var inputURL = document.getElementById("URLSelect"); function setPlaceholder() { inputURL.placeholder = 'https://www.google.com'; } </script> </body> </html>
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Trước khi nhấp vào ‘Lấy ví dụ’ nút -
Sau khi nhấp vào ‘Lấy ví dụ’ nút -