我目前正在使用以下代码每 10 秒将最后一个比特币价格推送到输入文本框的占位符字段:
var auto_refresh = setInterval(
function()
{$.get('gox.php', function (data) {
$("#inputid").attr('placeholder', data);
});}, 10000);
gox.php 输出一个值(例如 99.9999)
问题是当我加载我的页面时,占位符保持空白(因为我在 html 中设置了 placeholder="")并且直到 10 秒过去后才刷新到比特币价格(你在代码中看到的 10000)。
我努力了:
function()
{$.get('gox.php', function (data) {
$("#inputid").attr('placeholder', data);
});}
但它不起作用。
我的目标是让比特币价格在页面加载后立即填充占位符值,然后每 10 秒刷新一次。
在此先感谢您的帮助!