用jquery替换<input />中的值

时间:2015-12-08 13:40:09

标签: jquery html input replace

如何用jquery替换input属性?
下面的代码:

    Sub TellMeMore()
    With ActiveWindow.Selection.ShapeRange(1)
      MsgBox "Name: " & .Name & vbCrLf _
& "Index: " & CStr(.ZOrderPosition) & vbCrLf _
& "ID: " & CStr(.Id)
    End With
    End Sub

我正在使用Jquery,它给了我一个变量“total”
Jquery:

<input class="input-radio" data-checkout-total-shipping="$ 25.00" /> 

我想用来自Jquery脚本的总变量替换data-checkout-total-shipping =“25”里面的任何内容。

1 个答案:

答案 0 :(得分:1)

要将数据属性替换为total值,您可以使用:

$('.input-radio[data-checkout-total-shipping]').attr('data-checkout-total-shipping', total);

因此,如果total等于50,则会给出:

<input class="input-radio" data-checkout-total-shipping="50" /> 

如果不是预期的行为,请详细说明......