是否可以纯粹在HTML标记参数中进行连接?

时间:2017-10-22 03:45:02

标签: html html5 tags concatenation

例如:

<img src="http://www.pfpenergy.co.uk/media/1184/help-and-support." + "png">

执行时,img src标记只会读取 http://www.pfpenergy.co.uk/media/1184/help-and-support,而不会读取 png

3 个答案:

答案 0 :(得分:0)

我认为你不能这样做。

你可能只想要一个内部图像的真实链接:

        import java.io.*;
        public class LL04fromDisk
        {
          public static void main(String[] args) throws IOException, ClassNotFoundException
          {
            FileInputStream   fis = new FileInputStream("linkedListObj.dat");
            ObjectInputStream ois = new ObjectInputStream(fis);

            LL04mgr stuListMgr = new LL04mgr();

            stuListMgr.head = (LL04node)ois.readObject(); //code is here

            stuListMgr.dispList();

          }
        }

    //=================================================================

    import java.io.*;
    class LL04mgr implements Serializable
    {
      public LL04node head;                          // field

      public LL04mgr()                               // constructor
      {
        head = null;
      }
      //----------------------------------------------------------------------------
      public void addNode(int i, String n)
      {
        LL04node newNode = new LL04node(i, n, head);
        head             = newNode;
      }
      //----------------------------------------------------------------------------

      public void dispList()
      {
        LL04node current = head;

        while(current != null)
          {
            System.out.printf("%3d %-20s\n",current.id, current.name);
            current = current.next;
          }
      }

//===================================================
import java.io.*;
public class LL04node implements Serializable
{
  public int         id;                            //fields
  public String      name;
  public LL04node    next;

  public LL04node(int i, String n, LL04node ptr)    //constructor
  {
    id   = i;
    name = n;
    next = ptr;
  }
}

答案 1 :(得分:0)

将图像的类型链接到html中的图像链接可能无法正常工作。但这里唯一最简单的事就是这样。 我认为没有必要连接你要求的方式

 <a href="your-link">
 <img src="http://www.pfpenergy.co.uk/media/1184/help-and-support.png" alt="text"/></a>

答案 2 :(得分:0)

在html中使用连接没有任何意义。没有这样的变量可以连接。您需要的是在该页面内加载图像,而不是指向图像路径。

因此,当用户输入此网址或浏览链接时:

http://www.pfpenergy.co.uk/help-and-support

在那里你可以加载图像或背景图像html。

<!DOCTYPE html>
<html>
....
<img src="http://www.pfpenergy.co.uk/media/1184/help-and-support.png"
 alt="help and support" />
...
</html>