好,我是不會回答這個問題,但我沒有看到任何正確的答案(從我的POV):
function addElement(tdId) { // Specify the id the of the TD as an argument
$('#' + tdId).append(// Append to the td you want
$('<a></a>').attr({ // Create an element and specify its attributes
'href': '/home',
'title': 'Home'
}).append(// Also append the image to the link
$('<img />').attr({ // Same, create the element and specify its attributes
'src': 'image.png',
'width': '100px',
'height': '100px'
})
) // Close the "append image"
) // Close the "append anchor"
}
現在是一個純粹的jQuery的答案。一個JavaScript的答案將如下:
function addElement(tdId) { // Specify the id the of the TD as an argument
// Create the DOM elements
var a = document.createDocumentFragment('a'),
img = document.createDocumentFragment('img') // See the use of document fragments for performance
// Define the attributes of the anchor element
a.href = '/home'
a.title = 'Home'
// Define the attributes of the img element
img.src = 'image.png'
img.width = '100px'
img.height = '100px'
// Append the image to the anchor and the anchor to the td
document.getElementById(tdId).appendChild(a.appendChild(img))
}
我認爲js版本更具可讀性。但這只是我的看法; o)。
這很容易通過諮詢官方jQuery的文檔研究。 http://api.jquery.com/append/ – Patrick 2012-04-04 07:18:59
不要忘了標記答案,如果你有你想要的信息 – 2012-04-04 07:52:30