使用Javascript函数访问id

时间:2013-07-18 15:35:00

标签: javascript html

我有一组HTML页面。如何使用JavaScript函数获取所有HTML页面中特定id的值?我需要在我的所有html页面中添加该功能还是什么?

2 个答案:

答案 0 :(得分:3)

如果您使用jQuery,请使用$('#id')

如果您使用JavaScript,请使用document.getElementById(id);

答案 1 :(得分:-1)

首先,您应该在所有页面中包含您的javascript代码

<script src="js/myscript.js" type="text/javascript" />

最好将jQuery用于所有javascript代码,因为它更易于使用。当您包含jQuery库时,仅举例来说:

$('#divID').text(); // gets the text inside a div with the ID 'divID'
$('body').children(); // gets the children of the body tag

有关如何使用jQuery的更多信息,请访问以下链接:http://api.jquery.com/