編輯:問題解決!我在加載之前修改了頁面,所以腳本實際上沒有做任何事情。我現在修好了它,它工作。感謝您的幫助,我將不得不將這一個粉筆寫成jQuery的新手,這很奇怪。動態添加數組內容作爲新元素 - jQuery
長篇故事我試圖製作一個動態獲取文章標題,縮略圖圖片,描述和鏈接的網頁,並在頁面上創建一個格式良好的列表。我試圖在jQuery和HTML5中實現這一點。
以下是我將用於動態填充頁面的示例數據。現在格式化並不重要,因爲我可以在後期完成後進行格式化。
<script>
var newsTitles = ["If It Ain't Broke, Fix It Anyways"];
var newsPics = ["images/thumbnail_small.png"];
var newsDescs = ["August 14th 2015<br/><b>If It Ain't Broke</b><br/>Author: Gill Yurick<br/><br/> Sometimes, a solution isn't the only one. So how do we justify changes to systems that don't need to be fixed or changed? I explore various systems from other successful card games and how their approaches to issues (be they successes or failures in the eyes of the deisgners) can help us create EC."];
var newsLinks = ["it_aint_broke-gill_popson.html"];
var newsIndex = 0;
var newsMax = 1;
我試圖使用上面的數組內容動態地填充元素的代碼段。
<td style="height:500px;width:480px;background-color:#FFF7D7;padding:20px" colspan=2 id="article">
<h1>Articles</h1>
<!-- the column for each news peice add an element with the thumbnail, the title and teh desc -->
<script>
for(i = 0; i < newsMax; i++) {
$("#articleList").append("<h3 href="" newsLinks[i] + "">" + newsTitles[i] + "</h3>", "<img src=""newsPics[i] + "">","<p>" + newsDesc[i] + "</p>",); $("div").append("hello");
}
</script>
<div id="articleList">
HELLO
</div>
</td>
這裏是它結束了看起來像,如果需要,我可以發佈更多的信息,因爲我知道這可能不是足夠清晰,充分說明我的問題,但我無法確定。先謝謝你。
控制檯中的任何錯誤?您可以使用'F12'訪問控制檯。 –
在字符串連接中缺少屬性和「+」的引號。無法用'"e;'替換屬性引用 – charlietfl
@ParthTrivedi否,這是無效的使用'"e;' – charlietfl