最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do I use jQuery to insert PHP tags through the DOM? - Stack Overflow

programmeradmin1浏览0评论

Here is what I'm trying to do...

$("div").prepend("<div id='ment-number'><?php the_ment_number(); ?></div>");

Is there some way to get this to work?

<div class="gallery-item">
  <div class="ment-number"><!--?php echo htmlspecialchars(the_ment_number()); ?--></div>
  </span>
  <span class="gallery-icon">
    <a href="/"><img src=".gif"></a>
  </span>
</div>

Here is what I'm trying to do...

$("div").prepend("<div id='ment-number'><?php the_ment_number(); ?></div>");

Is there some way to get this to work?

<div class="gallery-item">
  <div class="ment-number"><!--?php echo htmlspecialchars(the_ment_number()); ?--></div>
  </span>
  <span class="gallery-icon">
    <a href="http://mysite./test/photos/attachment/fff/"><img src="http://mysite./test/wp-content/uploads/2011/06/fff-150x150.gif"></a>
  </span>
</div>
Share Improve this question edited Jul 19, 2011 at 8:16 J82 asked Jul 19, 2011 at 7:41 J82J82 2,3975 gold badges26 silver badges32 bronze badges
Add a ment  | 

7 Answers 7

Reset to default 7

PHP is executed on the server, but JavaScript code (jQuery) is executed later, in the web browser. For that reason, PHP can produce JavaScript code, but JavaScript can't produce PHP code.

The <!--? in your posted output shows that something is filtering our your PHP code. So the problem isn't your PHP code, it's that you're not actually executing PHP code. If it's a .js file, PHP almost certainly can't be included.

If PHP were being evaluated (ex. if this were in a <script> tag in a .php file), this should produce valid JavaScript code that will do what you want:

$("div").prepend("<div id='ment-number'><?php echo htmlspecialchars(the_ment_number()); ?></div>");

1) php is SERVER side scripting
2) javascript is CLIENT side scripting (generally)

so this is what happens:
1) User opens up your page http://example/
2) Your CLIENT sends GET request to http://example/ server
3) Apache (given you run on it) captures the request, based on the server config approaches index.php (index.html, etc). If php is installed, your index.php will be parsed by mod_php module
<<<< this is where SERVER side scripting is activated
4) oute of the parsing of index.php will be then transferred back to CLIENT
5) CLIENT will digest the oute received by SERVER
6) If there are javascript calls, those are executed either immediately OR when document is loaded (based on approach)

That's it. Here normal request life ends.

NOW if you want your page to dynamically update some parts of it, here is how you do that: 1) Usually to update your page dynamically, you would use AJAX approach. When AJAX request is created, 2-7 happens again, but this time the caller is your ajax process and information which is received is sent back to that process to decided what to do with it. Okay, some coding:

1) index.php

<!-- include jquery, etc //-->
<div id="ments"></div>
<script>
    function fetch_ments(){  
        $.get("ajax.php", null, function(data)){
            // this is called, when response from SERVER is received
            $("#ments").prepend(data);
            setTimeout("fetch_ments", 5000); // fetch again in 5 seconds
        }
    }
$(document).ready({
    fetch_ments();
});
</script>

2) ajax.php

<?php
//fetch ments, return them for CLIENT
echo "<p>Comment on " . date("Y-m-d H:i:s") . "<br />Lorem Ipsum</p>";

This should help you understand the whole process. Did not test the code, but should be quite ok.

do a .ajax() query to PHP script that will provide you value of the_ment_number(); and put result to ment-number by $("#ment-number").prepend(result); on success event in ajax query.

Remebmer that PHP script have to have connection to database and pass to it all variables you need (like entity id, article id, page etc.). You can do it by GET or POST.

Request is sended by browser so session/cookies will be the same unless you changed it in current request.

PHP is executed on the server side so you cannot call it from javascript

You can try something like this which will render once the page loads

$("div").prepend("<div id='ment-number'>"+ <?php the_ment_number(); ?> +"</div>");

Couldn't you just add the value directly to the template instead of using javascriot? eg:

<div class="gallery-item"> 
    <div class="ment-number"><?php echo (the_ment_number());?></div>
 ...
</div> 

Also you have a </span> tag with out matching <span> tag in your example.

As already told, you can't produce or call php code from javascript directly(you need to make an ajax call or form submit). You need to make ajax call using jquery to fetch the ment number and then update it into div.

However, you may want to look at this library - http://www.phplivex./ .It may help you in doing things your way. It allows you to call user defined php functions in javascript using AJAX internally.

Reading through this disccussion and from what i understand you want to acheive.. You gotta figure how your page is served. If it is an .php file that is serving the content, then you wont need Javascript at all and could get your function call to work by adding the function between the div as so..

<div class="ment-number"><?php echo htmlspecialchars(the_ment_number()); ?></div>

Assuming you don't have access to the .php or if its a .html/htm page that serves the content then your only bet would be to use ajax. That is make an ajax call to a php file(on the same domain) that makes your function call and echos the ment no. The Ajax will retrieve the echo'd ment no. which you can append/prepend to the desired

发布评论

评论列表(0)

  1. 暂无评论