我正在尝试利用 javascript 变量作为 PHP 数组的键来echo
输出。id
请注意,我想将 javascript 变量用作 PHP 数组的键$allNames[]
。
这可能吗?没有 JSON/AJAX?如果是这样,请帮忙。
<script type="text/javascript" language="javascript">
$('*[class^="spec"]').mouseover(function(){
var the_class = $(this).attr("class");
var id = the_class.replace("spec", "");
$('#here').html('<?php echo $allNames[id]; ?>'); // here
});
</script>
非常感谢。