如何用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”里面的任何内容。
答案 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" />
如果不是预期的行为,请详细说明......