如何使一个锚点将多个框架集更改为不同的东西
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
如何仅用1个锚点执行此操作?
答案 0 :(得分:1)
使用JS更改它们非常简单:
function changeTarget(element) {
element.setAttribute("target", "02"); //Or whatever. Just use the .setAttribute method to change the attributes you want.
}
这是HTML代码:
<!--You'll have to add something to your link though-->
<a href="link1" target="01" onclick="changeTarget(this)">1</a>
与使用JS时一样,请确保使用以下语法正确链接文件:
<script src="file.js"></script>
只问您是否需要任何澄清!