الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h1>Textarea with readonly</h1> <form action="/tryit/submitted" method="post"> <label for="biography">Biography</label> <br> <!-- لجعل المستخدم غير قادر على تغيير القيمة الموجودة فيه <textarea> للوسم readonly أضفنا الخاصية --> <textarea name="bigoraphy" id="biography" cols="40" rows="4" readonly>Harmash.com is published in 2014.</textarea> <br><br> <input type="submit" value="Submit"> </form> <p>Note: the readonly attribute tells the browser to not send the value the server.</p> </body> </html>