Xyberviri

jquery and php

Oct 10th, 2013
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. ============source================================
  2. <?php
  3. $sbid = "box";
  4. $texts2="test";
  5. ?>
  6. <!doctype html>
  7. <html lang="en">
  8. <head>
  9. <meta charset="utf-8">
  10. <title></title>
  11. <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  12. </head>
  13. <body>
  14. <textarea cols="80" id="box"></textarea>
  15. <script>
  16. var text = '<?php print $texts2; ?>';
  17. $( "#<?php print $sbid; ?>" ).val( text );
  18. </script>
  19. </body>
  20. </html>
  21.  
  22. ==========output==================================
  23. <!doctype html>
  24. <html lang="en">
  25. <head>
  26. <meta charset="utf-8">
  27. <title></title>
  28. <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  29. </head>
  30. <body>
  31. <textarea cols="80" id="box"></textarea>
  32. <script>
  33. var text = 'test';
  34. $( "#box" ).val( text );
  35. </script>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment