【发布时间】:2015-07-12 07:28:03
【问题描述】:
我想在锚标记内动态添加一个标题元素和两个<p> 标记。
下面是我要实现的代码。
<a href="http://shreerangpatwardhan.blogspot.com" class= "ui-list">
<h3>Author: Shreerang Patwardhan</h3>
<p><b>Description:</b> Spatial Unlimited is a Tech blog where, examples using Google Maps API v3 and Jquery Mobile are shared. I have tried to give back to the developer community as much as I can.</p>
<p class="ui-li-aside">Last update: April 9, 2013</p>
</a>
下面是我正在尝试制作的 javascript
var a =document.createElement("a");
var h3=document.createElement("h3");
var p=document.createElement("p");
var p1=document.createElement("p");
a.setAttribute('href', "#");
h3.setAttribute('value',"Author:"+name);
p.setAttribute('value',"Description"+finalsummary);
p1.setAttribute('value',"Last update:"+finaldate);
p1.setAttribute("class","ui-li-aside");
a.appendChild(p1);
a.appendChild(p);
a.appendChild(h3);
但标签没有被附加。
【问题讨论】:
-
这可能工作得很好,但你永远不会将锚附加到任何东西上`
-
P也没有价值
-
嗨,我将这个锚标记附加到 li 元素并将 li 附加到 ui
标签: javascript jquery html jquery-mobile