Jump to content
  • 0

Вместо innerText - undefined


hummermania
 Share

Question

Есть див, при кликаньи на который зовется функция

<div onclick="RClick(this.innerText)" >text</div>

- и по идее в параметре будет содержаться text. Потом в ф-ции

function RClick(str)
{ window.document.getElementById('q').value=str; }

- где элемент с ИД = q - обычное текстовое поле, вот и получается что при кликаньи на див в поле должен установиться текст. А там устанавливается undefined. по крайней мере в FF так.

Link to comment
Share on other sites

Recommended Posts

  • 0

Всем большой сэнкс - все работает, особенно Mordadrug.

Вот строки работающие

function RClick(str)

{

...

document.getElementById('q').value=str.replace(/(<{1}.+?>{1}){1}/gi,'');

document.forms.search.submit();

}

Я вначале регулярное выражение вставлял в одинарные кавычки ((((( str.replace('/(<{1}.+?>{1}){1}/gi','');

А оказывается надо без них. Привычка из ПХП. Ну а после всего отправка формы. Работает класс.

Гуугле отдыхает. у них кода наворочено яваскрипт - немеряно.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy