在 HTML 中插入 JavaScript
2013-06-16
124
我有此代码:
<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>
但是它不起作用。希望得到您的帮助。
1个回答
将您的 javascript 单独放在脚本标记中,然后指向您的元素属性以进行设置
<a id="myId" href='google.com' title=''> my link </a>
window.onload = function () {
document.getElementById("myId").setAttribute("title", "some title");
}
fiddle: http://jsfiddle.net/djwave28/rHddx/1/
如果您动态设置标题,则不需要标记中的属性。它将由 javascript 设置,如下面的 fiddle 所示。
Daniel
2013-06-16