Jump to content
  • 0

как обойти ЯваСкрипт


ruslan_rx
 Share

Question

Доброго всем времени суток!!!

У меня следующая проблема, Данное тело полностью рабочее, но мне надо какм то образом обойти наличие скрипта!!!

<body>
<script language="javascript">
function past(print)
{text.value = text.value + '<img src="01.gif">'}
</script>
<textarea name="text" size="50"></textarea>

<img src="01.gif" onclick="past(true)">
</body>
</html>

я новечек в этом деле но на моем бесплатном хостинге в гостивой стоит похоже какой то контроль он полностью игнорирует все скрипты такого плана

<script language="javascript">
function past(print)
{text.value = text.value + '<img src="01.gif">'}
</script>

т.е. все что внутри он не выполняет! вот поэтому мне надо это включить в

<img src="01.gif" onclick="past(true)">

Подскажите как можно это сделать если можно конечно!! ОЧЕНЬ надо

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

1. Вообще-то это вопрос в форум по JavaScript.

2. Если я правильно понял понял вопрос, то проблема у тебя в том, что тег

<textarea>

у тебя находится не в форме. Поэтому доступ к нему ты таким образом получить не сможешь.

Чтобы получить значение сделать типа так:

...
<body>
<script language="javascript">
function past(print)
{form_name.text.value = form_name.text.value + '<img src="01.gif">'}
</script>
<form name="form_name">
<textarea name="text" size="50"></textarea>
</form>


<img src="01.gif" onclick="past(true)">
</body>
</html>

Link to comment
Share on other sites

  • 0

Вопрос заключается в том что бы тагов типа скрип не было!

Приведенный ниже пример полностью рабочий, у меня на компе, но не на сервере!!!

<body>
<script language="javascript">
function past(print)
{text.value = text.value + '<img src="01.gif">'}
</script>
<textarea name="text" size="50"></textarea>

<img src="01.gif" onclick="past(true)">
</body>
</html>

Сервер олность игнарирует все что написано в нутри

<script language="javascript"> ... </script>

и соответственно onclick="past(true)" не выполняется! т.е. вопрос заключается в том, что мне надо написать тут onclick="..." что бы данный пример выполнялся!!!

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