Jump to content
  • 0

Помогите найти скрипт


alex_stepanow
 Share

Question

Вот в чем дело, особо не шарю в скриптах, потому прошу знающих. Есть на странице некая область, под ней чекбоксы и текстовые поля, если человек отмечает чекбокс "аренда" - то в этой некой области появляется "аренда" и так далее, то есть все что отмеченное и вписано в текстовых полях - генерируется на эту область и формирует описание объекта. Как это реализовать? Есть ли готовые решения? Если да - то подскажите как такой скрипт называется.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

скрипт сам нашел:

<html>

<head>

<script src="http://code.jquery.com/jquery-latest.js"></script>

<script>

$(document).ready(function(){

$("select").change(function () {

var str = "";

$("select option:selected").each(function () {

str += $(this).text() + " ";

});

$("div").text(str);

})

.change();

});

</script>

</head>

<body>

<select>

<option></option>

<option>Chocolate</option>

<option>Candy</option>

<option>Taffy</option>

</select>

<div></div>

</body>

</html>

но не могу понять как приспособить его к checkbox? подскажите хоть в этом!

Link to comment
Share on other sites

  • 0

Мои кривые руки написали следующее: http://jsfiddle.net/frwjB/ - подходит ли это вашим задачам? 8 и 9 строку можно удалить. Можно еще тернарный оператор напилить http://jsfiddle.net/frwjB/1/

Edited by moron
Link to comment
Share on other sites

  • 0

Мои кривые руки написали следующее: http://jsfiddle.net/frwjB/ - подходит ли это вашим задачам? 8 и 9 строку можно удалить. Можно еще тернарный оператор напилить http://jsfiddle.net/frwjB/1/

спасибо, тоже отличное решение :)

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