快问题…我想知道我该怎么做才能发生。
好的,我有一个这样的输入字段:
<input type="text" id="input1" size="10" name="" value="" class="checked other_amount" onfocus="Toggle('radio1','input1');" />
我想点击ID为#resetPrompt的div,并从“other_amount”的输入填充空名称attr
我的想法已经很久了
多谢你们,
马特
解决方法
$('#resetPrompt').click(function(){ $('#input1').attr('name','other_amount'); });