我有这种 id,来自 $_GET
72157637114842303
如果我传入 Ajax(在这种模式下在我的页面底部调用 php)
<script> var id = <?php echo (string)$id; ?></script>
<script src="/js/ajaxcalling.js"></script>
这是“ajaxcalling.js”文件:
$.ajax({
url : location.protocol + '//' + location.host + '/flickr_json.php',
data : {
type : 'photoset',
id : id
},
dataType : 'json'
}).done(function (result) {
它传递给flickr_json.php
这个值(我想是四舍五入的!)
72157637114842300
我怎样才能解决我的问题?谢谢你。