javascript - Passing jQuery variable to PHP on the same page? - Stack Overflow

I know this is a frequent question on Stack Overflow but I couldn't find scenario where the PHP co

I know this is a frequent question on Stack Overflow but I couldn't find scenario where the PHP code is just above JS script in the same file. I guess ajax POST/GET won't do the job in this case?

(...)
var ww = $(window).width();
   </script>

<?php $ww = [data here] ?>

I know this is a frequent question on Stack Overflow but I couldn't find scenario where the PHP code is just above JS script in the same file. I guess ajax POST/GET won't do the job in this case?

(...)
var ww = $(window).width();
   </script>

<?php $ww = [data here] ?>
Share Improve this question edited Dec 20, 2015 at 23:42 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Oct 6, 2011 at 21:18 WordpressorWordpressor 7,55326 gold badges75 silver badges115 bronze badges 4
  • 4 What's the purpose of your code? – Rob W Commented Oct 6, 2011 at 21:21
  • 2 I blame Frontpage. Not everyone can build a website, nor should everyone. – Chris Pratt Commented Oct 6, 2011 at 21:32
  • @Rob W I need to display 100%-wide image using Timthumb, width: 100% won't do the job because image have to be cropped. – Wordpressor Commented Oct 6, 2011 at 22:14
  • You're contradicting yourself. You'd like a width of 100%, and also a "Cropped image"? It's possible to crop the image using HTML/CSS only: 1) <img src=".." width=100 height-100> 2) <span style="width:150px;height:150px"><img src=".." style="width:100%;height:100%" /></span>. – Rob W Commented Oct 6, 2011 at 22:18
Add a ment  | 

5 Answers 5

Reset to default 6

You will have to use POST/GET to send a JS variable to PHP, because PHP is processed by the server and JS is processed by the client.

I know this isn't what you want to hear.

This is the wrong approach. The PHP is all parsed / evaluated server side. Later, the users' browser gets to parse / evaluate the javascript. Even if the JS appears before the PHP in your file, the PHP is still evaluated server side before anything is passed to the browser. If you need client side values passed back to the server, you use AJAX for that. You can make decisions on the server side again, and in the response, trigger the JavaScript to take some action based on the decision the PHP made, but you don't get to mix / match client / server actions in a single file like this.

I don't think there is any way, because javascript runs on your local machine AFTER PHP has been executed and has returned HTML/CSS/JS to your browser.

I would use AJAX to pass what I need to the server to be processed, then based on the response, using Javascript, make any necessary adjustments. For example:

***PHP File***
<?php
$ww = $_POST['data'];
$result = doSomethingWithVariable($ww);
echo $result;

***HTML File***
<script>
...
var ww = $(window).width();
$.ajax({
    url: 'phpfile.php',
    type: 'POST',
    data: { data : ww },
    success: function (result) {
        doSomethingWithResult(result);
    }
});
</script> 

What I did recently was passing a variable value to the attribute of an element that was dynamically generated by php. Then using the get attr() function of jquery to get the value. Worked perfectly!

PHP part:

foreach ((array)$photos['photos']['photo'] as $photo) {
$Maxcount++;
}

foreach ((array)$photos['photos']['photo'] as $photo) { 
echo "<img imgID='$IDcount' Maxcount='$Maxcount'

jQuery:

 var maxCount= $(".imageView").attr("maxCount");

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743697773a4492047.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信