我有这个脚本:
<script>
function teste()
{
alert("in");
var ar_ida = <?php echo json_encode($arrayida); ?>;
for(var i=0;i<30;i++){
alert(ar_ida[i]);
}
}
</script>
并在此按钮中调用它:
<input type="button" value="teste" id="1" onclick="teste()" />
并且由于某种原因它不起作用。我试图删除 de Json 函数并且脚本已经打开。使用 json 函数,它甚至不会“输入”警报。