同时编辑两个字段

发布于 2024-11-14 15:46:46 字数 85 浏览 0 评论 0原文

我希望能够编辑一篇文章的标题,该标题在名为“url”的字段中重复,当用户在标题字段中输入时,该字段会实时更新......我该如何处理?

谢谢

I want to be able to edit the title of an article which is duplicated in a field called "url" which is updated in real time when the user types in the title field...how do I go about this?

Thanks

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

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

发布评论

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

评论(4

终弃我 2024-11-21 15:46:46

你可以使用 jQuery。查看手册

$(function()
{
    $('#field1').keyPress(function()
    {
        $('#field2').val($(this).val());
    });
});

You could use jQuery. Have a look at the Manual.

$(function()
{
    $('#field1').keyPress(function()
    {
        $('#field2').val($(this).val());
    });
});
热情消退 2024-11-21 15:46:46

工作演示: http://jsfiddle.net/Wcp3D/

$("document").ready(function ($) {
    $("input").bind('keyup', function() { $("lable").text($(this).val()) } );

});

<input type='text'/>
<label></label>

你的意思是这样的吗?

Working demo: http://jsfiddle.net/Wcp3D/

$("document").ready(function ($) {
    $("input").bind('keyup', function() { $("lable").text($(this).val()) } );

});

<input type='text'/>
<label></label>

do you mean something like this?

旧梦荧光笔 2024-11-21 15:46:46

我在工作中没有配置我的环境,但它应该是这样的:

$("#url").change(function() {
 document.title = $(this).value();
});

I don't have my environment configured here at work, but it should be something like that:

$("#url").change(function() {
 document.title = $(this).value();
});
不爱素颜 2024-11-21 15:46:46

将函数添加到字段一的更改事件,并更新该函数中的字段二:

$('#field1').change( function( ) {
   $('#field2').value( $(this).value( ) );
}

Add a function to the change-event of field one, and update field two in that function:

$('#field1').change( function( ) {
   $('#field2').value( $(this).value( ) );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文