我想访问在 div 中发布的 ajax 中的隐藏值
<input type="button" value="button 1" class="btn">
<div id="div"><div>
<script>
$.ajax({
url:"btn2.php", success:function(data){
$('#div').html(data);}
});
$( "#table" ).on( "click", ".upd", function() {
alert("button is wrking");
});
</script>
PHP
echo"<input type='button' value='button 2' class='btn'>
<input type='hidden' value='dishonest' id='hdn'>";
任何人都可以帮我解决这个问题..我不知道该怎么办...
基本上我想要隐藏的价值
var h=$('#hid').val();
但这不起作用,因为它稍后在 div 中发布...