如何在网页的文本区域中的其他位置显示文本?
我正在开发一个 YouTube 视频嵌入器,当您将链接复制并粘贴到其中时,它会在文本区域中显示编辑后的链接。
到目前为止,这就是我所拥有的一切:
<html>
<body>
<div>
<input id="videolink" type="text" value="Youtube Video Identification link(The bit at the end) Here" onfocus="this.value==this.defaultValue? this.value='':null">
<br />
<textarea rows="10">
<iframe width="500" height="500" scr="http://www.youtube.com/embed/"> <iframe>
</textarea>
</div>
</body>
</html>
我想要在文本区域中显示的文本是视频链接文本行
I am working on a youtube video embedder that when you copy and paste a link into, it displays the edited link in the text area.
This is all I have so far:
<html>
<body>
<div>
<input id="videolink" type="text" value="Youtube Video Identification link(The bit at the end) Here" onfocus="this.value==this.defaultValue? this.value='':null">
<br />
<textarea rows="10">
<iframe width="500" height="500" scr="http://www.youtube.com/embed/"> <iframe>
</textarea>
</div>
</body>
</html>
The text I want to display in the textarea is the videolink text line
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
这是更新后的 jsFiddle: http://jsfiddle.net/9Kxxb/2/
Try this:
Here's the updated jsFiddle: http://jsfiddle.net/9Kxxb/2/