使用jQuery更新输入值更新属性但不输入

时间:2016-11-04 06:08:11

标签: jquery input

我正在使用jquery来更新输入的值。我console.log价值而且是正确的。检查后,value属性会更新,但输入仍为空白。当我保存时,值不会通过。

代码使用wordpress来获取值,但它所做的只是将值传递给jQuery,以便它可以插入值。

$('.get-video').click(function(e) {

    // Clear out current targets
    $('.video').removeClass('currentValue');

    // Add class to elements in current target area
    $(this).closest('td').find('.video').addClass('currentValue');

    e.preventDefault();
    wp.media.editor.send.attachment = function(props, attachment) {
        console.log(attachment.url);
        $('.currentValue').attr('value',attachment.url);
    };
    wp.media.editor.open($(this));
    return false;
});

0 个答案:

没有答案