Jump to content
  • 0

Изменение в тексте


vladimircape
 Share

Question

Добрый день.

Кто может поможет статьями или советом, как лучше сделать такую вещь.

Есть текст письма.

к примеру

"Добрый день, у нас есть 1020 долларов и мы хотим участников ближе к Москве"

при нажатии по тексту ,его можно редактировать.

но также вверху есть галочки checkbox и с формами ввода для цены и адресса.

К примеру нажав на галочку цены и введя 500 ,в тексте меняется 1020 на 500

или нажав на галочку в Москве и меняя текст на Питер, в тексте меняется Москве на Питер

Все бы можно сделать при помощи меток, типа класса,но

1)При редактировании текста будут видны эти метки типа <p class="price">1020</p> и если при редактировании пользователь их неправильно изменит, то выведется html как текст

Как эту проблему решить?

2)Если пользователь стерёт и изменить полностью текст, то потом куда ставить цену и адресс, если он нажмет на checkbox?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

HTML:


<form>
<label>Ввести свою цену <input type='checkbox' id = 'setprice'></label>
<input id = 'price' style = 'display: none'><br>
<hr>
<input id = 'print' style = 'width: 100%' value = 'Добрый день, у нас есть 1020 долларов и мы хотим участников ближе к Москве'>
</form>

JS:


var defVal = $('#print').val();

$('#setprice').change(function() {
if ($(this).attr('checked')) {
$('#price').css('display', 'block');
} else {
$('#price').css('display', 'none');
$('#print').val(defVal);
}
});

$('#price').keypress(function() {
setTimeout(function() {
if ($('#price').val()) {
$('#print').val($('#print').val().replace(/\d+/, $('#price').val()));
} else {
$('#print').val(defVal)
}
}, 100)
});

JSFiddle

Поймешь задумку - сделаешь сам)

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