我是JS / jQuery的新手。
我尝试实现的目标是,每当我按下“Title
”或“Description
”时,只会出现当前的文本区域消息。
我试图克隆原始的div
,但我真的不知道在哪里或如何使用它,所以更换文本的想法似乎更容易实现。
正如我所说,我是网络编程的新手,我真的很喜欢摇滚乐。我不明白为什么以下代码不起作用:
<div class="content">
<form method="POST" id="anunt">
<table id="anunt">
<tr id="title">
<td> Title: </td>
<td> <input type='text' name='title' id='titleClick'> </td>
</tr>
<tr id="description">
<td> Description: </td>
<td> <textarea rows="5" cols="40" id="descriptionClick" name="description"></textarea> </td>
</tr>
<tr>
<td> <input type="submit" name="send" value="Send"> </td>
</tr>
</table>
</form>
var title;
var description;
$('#titleClick').one('click', function(){
title = '<span id="text" style="font-weight: bold; font-size: 18px; color: red;">Title text</span>';
$("#title").append(title);
$('#description').html($('#description').html().replace(description, ''));
});
$('#descriptionClick').one('click', function(){
description = '<span id="text" style="float:left; font-weight: bold; font-size: 18px; color: red;"> Description text</span>';
$("#description").append(description);
$('#title').html($('#title').html().replace(title, ''));
});
答案 0 :(得分:1)
将您的javascript更改为以下内容:
$('#titleClick').on('focus', function(){
$('#text').remove();
$("#title").append('<span id="text" style="font-weight: bold; font-size: 18px; color: red;">Title text</span>');
});
$('#descriptionClick').on('focus', function(){
$('#text').remove();
$("#description").append('<span id="text" style="float:left; font-weight: bold; font-size: 18px; color: red;"> Description text</span>');
});
答案 1 :(得分:1)
你可以这样做:
var text = {};
text['title'] = '<span id="text" style="font-weight: bold; font-size: 18px; color: red;">Title text</span>';
text['description'] = '<span id="text" style="float:left; font-weight: bold; font-size: 18px; color: red;"> Description text</span>';
$('input, textarea').on('focus', function() {
$('#text').remove();
$(this).parent().append(text[this.name]);
});
答案 2 :(得分:0)
或类似的东西可以起作用:
var title;
var description;
$('#titleClick').on('click', function(event){
event.stopPropagation();
var textToDisplay = 'this is an error message';
var $errorElement = $('span.title-text');
$errorElement.text(textToDisplay);
$('body').one('click', function() {
$errorElement.text('');
});
});
$('#descriptionClick').on('click', function(){
// repeat for second element - or make a more generic function that works for both.
});