使用jquery加载php变量并使用javascript

时间:2015-05-29 08:14:36

标签: javascript jquery

我想加载一个php变量,并希望将其用于javascript

$(document).ready(function() {
    $('#reload').load('http://www.domain.de/content/entwicklung/reload.php?uid=' + uid_clear + '');
});

从这段代码中我得到一个var,但我只能将其加载到div

if (uid_clear == ..) {
    // want to replace the dots with the data from .load
    document.write(' Allgemeine Reloadsperre für das Mitglied von 30 Minuten');
}

如何将data加载到div并将其用作javascript var?有没有办法转移/更改它,或者是否可以将数据加载为javascript var?

亲切的问候

2 个答案:

答案 0 :(得分:2)

像这样使用$.get

$.get( 'http://www.domain.de/...', function( data ) {
  if (uid_clear == data) {
    // want to replace the dots with the data from .load
    document.write(' Allgemeine Reloadsperre für das Mitglied von 30 Minuten');
  }
});

有关get方法的详情,请查看the documentation

答案 1 :(得分:0)

创建一个隐藏的输入,将PHP变量放在这个隐藏的输入中,而不是放入div中。 然后使用js / jquery在js中获取此html值。

HTML

<input type="hidden" id="my_value_from_php" value="<?php echo $your_PHP_var; ?>"/>

JQUERY

var uid_clear = $('#my_value_from_php').val();
// you can use your js variable now