2013-09-29 59 views
-2

我如何獲得像jQuery中的元素?我正在尋找JavaScript代碼。如何在jquery中調用元素?

例如: $(#標識)

預先感謝

+5

'的document.getElementById( '編號');' – Ohgodwhy

+0

@Ohgodwhy :不妨把這個作爲答案 – xbonez

+1

你可能想看看jQuery的教程:http://learn.jquery.com/using-jquery-core/jquery-object/ – jeff

回答

3

甲純javascript的答案是:

document.getElementById('id'); 
+1

我想補充說,這有效的時候你有ID。如果你打算使用其他選擇器,請看['document.querySelector'](https://developer.mozilla.org/en-US/docs/Web/API/document.querySelector) – xbonez

+0

@xbonez是的,我可能應該有聯繫,謝謝! +1 – Ohgodwhy

相關問題