我找不到任何解决我的问题的方法,所以我把它贴在这里。我有
<td class="something"><i>some text</i></td>
当我点击它时,我想把这个“一些文本”变成输入文本。我怎样才能做到这一点?
我找不到任何解决我的问题的方法,所以我把它贴在这里。我有
<td class="something"><i>some text</i></td>
当我点击它时,我想把这个“一些文本”变成输入文本。我怎样才能做到这一点?
只需.html()
单击并替换即可使用$(this)
。试试这个。
$(".something").click(function(){
$(this).html("<input type='text'/>");
});
这是演示
简单的 javascript,没有 JQuery
<i onclick="javascript:f(this);">some text</i>
<script type="text/javascript" language="javascript">
function f(i) {
i.innerHTML = "<input type=\"text\" value=\"" + i.innerHTML + "\" \/>";
}
</script>
$(".something").html("<input type='text'/>");
$('.something i').click(function() {
$(this).replaceWith('<input type="text" value="' + $(this).text() + '">');
});
一个解决方案可能是:
$('.something').click(function() {
$(this).html('<input type="text" name="myname" />');
});
你可以试试
$('td.something').on('click',function(){
$(this).html('<input type="text" name="name" />');
});
如果您希望输入文本检索 td 的值,可以执行以下操作:
$('td.something').on('click',function(){
$this = $(this);
$this.html('<input type="text" name="name" value="'+$this.text()+'" />');
});
这是一个小提琴:http: //jsfiddle.net/vDktG/
$('td.something i').on('click', function() {//bind event to <i> tag
this.prevHTML = $(this).html(); //can roll back if user cancels.
this.innerHTML = '<input>'; //input with no type specified defaults to text input
});
尝试这个
<td class="something"><i onclick="turnIntoText(this)">some text</i></td>
<script type="text/javascript">
function turnIntoText(args) {
$(args).replaceWith('<input type="text" value="'+$(args).html()+'" />');
}
// or
// function turnIntoText(args) {
// $(args).replaceWith('<input type="text" />');
// }
</script>
$('.something').on('click', function(e) { // Rename node
var $this = $(this);
var length = $this.children().text().length;
var input = $('<input />', { 'type': 'text', 'value': $this.children().text(), 'data-old': $this.text() });
$this.parent().append(input);
$this.remove();
input.attr('size', length).focus();
}).on('blur', function(e) { // Save on blur
var $this = $(this);
var value = $this.val();
var oldValue = $this.attr('data-old');
$.post('YOUR URL', function (data) { // save the input data
if (data.success) {
$this.parent().append('<td class="something"><i contenteditable>' + value + '</i></td>'); // save successful
} else {
$this.parent().append('<td class="something"><i contenteditable>' + oldValue + '</i></td>'); // save error, use old value
}
$this.remove();
});
}).on('keyup', function(e) {
if (e.keyCode == 13) { // Enter key - trigger blur (save)
$(this)[0].blur();
} else if (e.keyCode == 27) { // Escape key - cancel, reset value
var $this = $(this);
$this.parent().append('<td class="something"><i contenteditable>' + $this.attr('data-old') + '</i></td>');
$this.remove();
}
});