在脚本标记中,要检索变量内的变量值,我使用了以下代码,但它不返回任何值。
<script src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
<script type="text/javascript" language="javascript">
$(function () {
var data = {
GetAnimals: function()
{
return 'tiger'; assign value to GetAnimals variable
},
GetBirds:function()
{
return 'pegion'; assign value to GetBirds variable
}
}
});
document.write(data.GetAnimals);//should print tiger
document.write(data.GetAnimals);//should print pegion
</script>
但是,我无法打印所需的结果。
提前致谢。