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