我创建了这个脚本:
<script>function txtload () {$(".divbody").load("maintxt/information1.txt");}</script>
我正在使用这样的链接:
<a href="#" onclick="ChangeImage(), txtload ()">Information 1</a>
我需要更改脚本以创建多个 href 为每个链接加载不同的文本:
<a href="#" onclick="ChangeImage(), txtload ()">Information 1</a>
<a href="#" onclick="ChangeImage(), txtload ()">Information 2</a>
<a href="#" onclick="ChangeImage(), txtload ()">Information 3</a>
<a href="#" onclick="ChangeImage(), txtload ()">Information 4</a>
你能帮我吗?我尝试从脚本中删除“”并将其放在 href 本身中......不知道我在做什么......
认为这应该有效。请给我你的意见:
<script>function txtload () {$(".divbody").load("maintxt/" + filename);}</script>
<a href="#" onclick="ChangeImage(), txtload ("information1.txt")">Information 1</a>
谢谢!