我是Jquery和Javascript的新手。我正在嘗試修改this示例:w3schools將URL從最初的www.w3schools.com更改爲第二個:www.w3schools.com/jquery並返回到最初的一次,當點擊按鈕(儘可能多次),但我不知道如何去做。請在答案中包含所有代碼,這會更容易。謝謝。如何使用JQuery動態更改URL
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#w3s").attr("href", "https://www.w3schools.com/jquery");
});
});
</script>
</head>
<body>
<p>
<a href="https://www.w3schools.com" id="w3s">
W3Schools.com
</a>
</p>
<button>
Change href Value
</button>
<p>
Mouse over the link (or click on it) to see that the value of the href attribute has changed.
</p>
</body>
</html>
首先哈弗鏈接,你會看到... www.w3school.com ....點擊按鈕鏈接變更後.. 。你可以檢查它 –
@Miguel通過回答似乎沒有理由(*也許由機器人*),無論如何它回答你的問題。其他問題只是複製您提供的代碼並將其置於答案中。 –
https://www.w3schools.com/code/tryit.asp?filename=FGOSUXX5HUOG –