有没有办法将 jQuery 变量传递给 PHP 变量以及从 PHP 传递给 jQuery?我想用 jQuery 从一个 div(用 PHP 生成)中获取 ID 并将该值赋给一个变量。
问问题
181 次
2 回答
2
PHP 到 jQuery:
<script type="text/javascript">
jQuery(function($){
$('#<?php echo $elementId; ?>').hide();
});
</script>
jQuery 到 PHP:
<script type="text/javascript">
jQuery(function($){
$.post('page.php', { var: 'value' }).done(function(data){
// Do something
});
});
</script>
于 2013-08-18T11:55:26.307 回答
-2
您可以在帖子中使用 ajax 或获取这里是一个示例
//Javascript file
$("input[type=checkbox]").click(function () {
$.post('my_ajax_receiver.php', 'val=' + $(this).val(), function (response) {
alert(response);
});
});
//PHP file ajax_remote.php
<?php
$value = $_POST['val'];
echo "I got your value! $value";
?>
于 2013-08-18T12:04:32.373 回答