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

Concatenation of HTML string using PHP or Javascript - Stack Overflow

programmeradmin2浏览0评论

I need to do a HTML string concat (using PHP or Javascript) and I don't know how to do it.

What I'd like

<src=""+$city+"rest_of_the_link">

(I've already tried the previous code but it doesn't do the trick)

I need to do a HTML string concat (using PHP or Javascript) and I don't know how to do it.

What I'd like

<src="http://maps.google"+$city+"rest_of_the_link">

(I've already tried the previous code but it doesn't do the trick)

Share Improve this question edited Sep 2, 2011 at 8:20 Bruno asked Sep 2, 2011 at 8:14 BrunoBruno 9,10713 gold badges40 silver badges55 bronze badges 13
  • 3 HTML is not a programming language. What on earth is $city supposed to be? – BoltClock Commented Sep 2, 2011 at 8:15
  • @BoltClock $city is a variable containing the name of a city. – Bruno Commented Sep 2, 2011 at 8:17
  • 1 HTML does not have variables. – BoltClock Commented Sep 2, 2011 at 8:17
  • 1 @Bruno No it's not. Unless it's in a language other than HTML... Javascript? PHP? – Paul Commented Sep 2, 2011 at 8:18
  • 4 Downvotes seem totally unnecessary. OP doesn't have to know what language the solution will e from. – Uri Commented Sep 2, 2011 at 8:24
 |  Show 8 more ments

7 Answers 7

Reset to default 4

You can't. HTML doesn't have strings … or variables. It is a markup language, not a programming language.

You can generate HTML from another language (which could be a program that is executed automatically by a webserver to generate the content for a URL), and you can use DOM APIs (again from another language) to manipulate a DOM generated from an HTML document.

You cannot do that with HTML alone. HTML is not a programming language, it's a markup language (hence the HyperText Markup Language), for that reason, no variables (or control structures, or anything of that sort) is in it.

What you need to do, is to supply yourself with a different language to help generate the HTML.

For example, in PHP you'd do something like so:

<?php
    $city = "London"; //Set the variable
    echo "<src=\"http://maps.google".$city."rest_of_the_link\">"; //Echo result concatenating $city inside.
?>

Using PHP:

<src="http://maps.google<?=$city?>rest_of_the_link">

I think what you're looking for is templating.

You can load the HTML as a template, and then plant values in specific locations. If you load it from the server side you can use django templates (I use django and my backend is in python), and if you're doing it from the client size, through javascript, you can use jquery templates or the jqote plugin for jquery which is apparently faster than the native jquery solution.

For example, If you're using django, your html would look something like this:

<src="http://maps.google{{city}}rest_of_the_link">

And when you load it using the server, you pass a dictionary object that has a value for the key 'city'.

I'm not sure what is the best method for php templates, but this is something you can probably find easily when you know what you're searching for.

You need a serverside language like PHP or ASP to do this. You can also build the url dynamically using Javascript (or a bination of one of these options) but your question does not make clear where the value of the variable must e from.

Html is not a programming language, you can achieve it by using JavaScript DOM or JQuery. Just access the the anchor object, manipulate and assign its attribute.

<src="maps.google<?php echo $city ?>rest_of_the_link">

Assuming you're using PHP and this is in a .php file.

发布评论

评论列表(0)

  1. 暂无评论