我想在点击链接时为隐藏字段(sub_catid)设置值。我的源代码如下。
隐藏输入字段
upload_max_size values
链接
<input type="hidden" name="sub_catid" value="" id="sub_catid">
答案 0 :(得分:1)
function func(btnId){
document.getElementById('sub_catid').value = document.getElementById(btnId).getAttribute('data-subcat');
//testing new value
alert(document.getElementById('sub_catid').value);
}
&#13;
<input type="hidden" name="sub_catid" value="" id="sub_catid">
a link
<a id="button" href="#" data-subcat="3" class="sub-cat-id" onclick="func(this.id)">Sub Category Name</a>
&#13;