Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

How to put a characters limitation on a richtext field?

  • 1 trả lời
  • 0 gặp vấn đề này
  • 5 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

The following code worked with IE, but not with Firefox:

var fieldcontent=document.forms(0).Body.value if (fieldcontent.length > 150)


User Agent

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)

The following code worked with IE, but not with Firefox: var fieldcontent=document.forms(0).Body.value if (fieldcontent.length > 150) == User Agent == Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30)

Tất cả các câu trả lời (1)

more options

Use square brackets instead of rounded brackets (it's an array)

var fieldcontent=document.forms[0].Body.value if (fieldcontent.length > 150)