2

bitcoin price次を使用して、現在のWebページをロードしています。

var auto_refresh = setInterval(
     function()
     {$('.btc-price').load('gox.php');}, 10000);

現在の価格を取得して表示できます。

<div class="btc-price"></div>

しかし、価格を入力フィールドの「プレースホルダー」として使用したい:

<input placeholder="[current bitcoin price here]" />

これは可能ですか?

4

1 に答える 1

6

id入力フィールドに を指定してから、placeholderjquery を介して属性を設定できます。

var auto_refresh = setInterval(
     function()
     {$.get('gox.php', function (data) {
          $("#inputid").attr('placeholder', data);
     });}, 10000);
于 2013-07-15T04:36:52.580 に答える