Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Why do "invis" form fields show in "print preview"?

  • 2 ответа
  • 1 имеет эту проблему
  • 1 просмотр
  • Последний ответ от BigAlBat

more options

I have a couple pages with forms that have an input field which has a class="invis". The field does not show up in the browser. However, it DOES show up in the browser's Print Preview function. I had never noticed this before today. And I tried Print Preview in 8 different browsers and all allow the "invisible" field to be seen. Has anyone else noticed this behavior? Could this be a shortcoming of html or could all browsers possibly be at fault? Or could it even be some other entity to blame? Whatever... it certainly defeats the purpose of "invisible" form fields. Could there even be a work-around? Help... anyone?

I have a couple pages with forms that have an input field which has a class="invis". The field does not show up in the browser. However, it DOES show up in the browser's Print Preview function. I had never noticed this before today. And I tried Print Preview in 8 different browsers and all allow the "invisible" field to be seen. Has anyone else noticed this behavior? Could this be a shortcoming of html or could all browsers possibly be at fault? Or could it even be some other entity to blame? Whatever... it certainly defeats the purpose of "invisible" form fields. Could there even be a work-around? Help... anyone?

Все ответы (2)

more options

Hi BigAlBat, I do not know, what is the css code that makes it invisible? visibility:none or display:none ?

Might want to file a bug in bugzilla.mozilla.org with an example.

Cheers.

more options

The html code is: <input type="text" name="spamtest" class="invis" maxlength="5" size="5" value="Φ∞Σ±ß"> and the css is: input.invis { display:none; }. Don't know if filing a bug report would help since I observed this behavior in 8 different browsers. But in my opinion(for what it's worth, are you listening Mozilla?) a field defined as display:none should not be visible anywhere other than in an offline html editor. I should add here also that it is visible when you "view source" with any browser. What good is having a "display:none" form field that anyone can see?