我已经使用inspect元素在Google Chrome中确定了我想要的元素。我将使用什么方法,路径或语法来使用这个元素的方法?元素的树(?)如下:
html body div#contentDiv div#searchFormDiv div.searchFormFieldsLeft form#companysearch.companySearchForm fieldset input#company
答案 0 :(得分:1)
您需要的元素有一个ID,因此请使用它:
var element = document.getElementById('company');