如何将文本转换为输入?

发布于 2024-11-18 02:23:51 字数 65 浏览 3 评论 0原文

我如何创建诸如以下内容:
- 有一些文字
- 我点击它
- 它转换为包含我单击的文本的输入。

How can I create something such as:
- there is some text
- I click on it
- It transforms into an input that contains the text I clicked on.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

知你几分 2024-11-25 02:23:51

怎么样

像这样的HTML

<div onclick="transform(this)">Some text here</div>

Javascript

function transform(obj)
{
    obj.innerHTML = "<input type='text' value='" + obj.innerHTML + "' />";
}

?希望我正确理解了你的问题。

How about something like this

HTML

<div onclick="transform(this)">Some text here</div>

Javascript

function transform(obj)
{
    obj.innerHTML = "<input type='text' value='" + obj.innerHTML + "' />";
}

Hope I've understood your question correctly.

暮光沉寂 2024-11-25 02:23:51
<a href="#" onclick="var input = document.createElement('input'); input.setAttribute('value', this.firstChild.nodeValue); this.parentNode.replaceChild(input, this);">here is some text</a>. Click it.

您还可以使用

<a href="#" onclick="var input = document.createElement('input'); input.setAttribute('value', this.firstChild.nodeValue); this.parentNode.replaceChild(input, this);">here is some text</a>. Click it.

Instead of <a> you could also use <span> or <div> whatever you feel like.

巷雨优美回忆 2024-11-25 02:23:51

假设 HTML:

<p id='changeMe'>This is some text</p>

您可以使用 jQuery:

$('#changeMe').click(function(){
    $this = $(this)
    $this.replaceWith( $('<input />').val( $this.text() ) )
})

请参阅此处的演示:http://jsfiddle.net/aXZ8e/

Assuming HTML:

<p id='changeMe'>This is some text</p>

You can use jQuery:

$('#changeMe').click(function(){
    $this = $(this)
    $this.replaceWith( $('<input />').val( $this.text() ) )
})

See demo here: http://jsfiddle.net/aXZ8e/

温馨耳语 2024-11-25 02:23:51
<span id="target" onclick="javascript:run();" >This is dummy text</span>

<script type="text/javascript">
function run() {
  var span = document.getElementById( "target" );
  var text = span.innerHTML;
  var input = document.createElement("input");

  input.type = "text";
  input.value = text;

  span.innerHTML = "";
  span.appendChild( input );

  span.onclick = null;
}
</script>
<span id="target" onclick="javascript:run();" >This is dummy text</span>

<script type="text/javascript">
function run() {
  var span = document.getElementById( "target" );
  var text = span.innerHTML;
  var input = document.createElement("input");

  input.type = "text";
  input.value = text;

  span.innerHTML = "";
  span.appendChild( input );

  span.onclick = null;
}
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文