這裏是陣列使用JavaScript/jQuery來改變在按鈕的div文字點擊
var copyText= [
'this is the first line',
'Simply put, the second line',
'impressed by the third line.'
];
這些不工作...
$("#thisbutton").click(function() {
$("#thetext").innerHTML("meow meow");
});
或
$("#thisbutton").click(function() {
$("#thetext").innerHTML(copyText[1]);
});
或
$("#thisbutton").click(function() {
$("#thetext").text(copyText[1]);
});
$("#thisbutton").click(function() {
$("#thetext").html(copyText[1]);
});
我失蹤了什麼? THKS。
請公佈源代碼的其他頁面上。另外,你可能想要把整個東西包裝在$(function(){// code here})中; – 2010-11-28 03:44:51
謝謝,是的,這就是它。怎麼樣href和一個鏈接,如何可以訪問一個javascript數組? <!DOCTYPE HTML>
<腳本類型= 「文本/ JavaScript的」> $(函數(){ VAR htmlLinks = [ 'http://cnn.com', ' http://youtube.com', 'http://facebook.com' ]; }); htmlLinks[0];" target="_blank"> link1 \ htmlLinks[1];" target="_blank"> link2 \ htmlLinks[2];" target="_blank"> link3 – windsurf88 2010-11-28 16:33:30