我正在尝试设置字段的内部 html 值并且效果很好,但是当我尝试检索它时它失败了。
我的代码:
var butId = buttonPressed.getAttribute('id');
$('#will'+butId).remove();
$('#hidDelete').html(butId); //THIS WORKS FINE
var temp = $('#hidDelete').html(); //THIS DOESNT
alert (temp); //THIS PRINTS NOTHING
我的输入字段:
<input id="hidDelete" type="hidden" name="hidDelete"/>
任何人都可以看到它有什么问题吗?