我有这个代码:
<a href='google.com' title=' '> <script>exam='y';</script> </a>
我想<script>exam='y';</script>
在标题标签中添加这个脚本,如下所示:
<a href='google.com' title=' <script>exam='y';</script> '> <script>exam='y';</script> </a>
但它不起作用。希望得到您的帮助。
我有这个代码:
<a href='google.com' title=' '> <script>exam='y';</script> </a>
我想<script>exam='y';</script>
在标题标签中添加这个脚本,如下所示:
<a href='google.com' title=' <script>exam='y';</script> '> <script>exam='y';</script> </a>
但它不起作用。希望得到您的帮助。
将您的javascript单独放在脚本标签中,然后指向您的元素属性进行设置
<a id="myId" href='google.com' title=''> my link </a>
window.onload = function () {
document.getElementById("myId").setAttribute("title", "some title");
}
小提琴:http: //jsfiddle.net/djwave28/rHddx/1/
如果您动态设置标题,则不需要标签中的属性。它将由 javascript 设置,因为 thfollowing fiddle 会告诉你。