Замена в кнопке части ссылки в onclick на странице
Вопрос от очень неопытного в js Необходимо заменить часть URL во всех кнопках которые есть на странице. А именно onclick="window.location = 'add_cart.asp?quick=1&item_id=24738' нужно заменить на onclick="window.location = 'www.site/24738.html'
<div class="action">
<input value="Add To Cart" onclick="window.location = 'add_cart.asp?quick=1&item_id=24738'" class="btn" onmouseover="this.className='btn_over'" onmouseout="this.className='btn'" type="button">
</div>
По запросу document.querySelectorAll('.action > input') получаю огромный NodeList и не понимаю как из него вытянуть значение onclick
document.querySelectorAll('.action > input')
NodeList(48) [input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn, input.btn]
0
:
input.btn
accept
:
""
accessKey
:
""
align
:
""
alt
:
""
ariaAtomic
:
null
ariaAutoComplete
:
null
ariaBusy
:
null
ariaChecked
:
null
ariaColCount
:
null
ariaColIndex
:
null
ariaColSpan
:
null
ariaCurrent
:
null
ariaDescription
:
null
ariaDisabled
:
null
ariaExpanded
:
null
ariaHasPopup
:
null
ariaHidden
:
null
ariaInvalid
:
null
ariaKeyShortcuts
:
null
ariaLabel
:
null
ariaLevel
:
null
ariaLive
:
null
ariaModal
:
null
ariaMultiLine
:
null
ariaMultiSelectable
:
null
ariaOrientation
:
null
ariaPlaceholder
:
null
ariaPosInSet
:
null
ariaPressed
:
null
ariaReadOnly
:
null
ariaRelevant
:
null
ariaRequired
:
null
ariaRoleDescription
:
null
ariaRowCount
:
null
ariaRowIndex
:
null
ariaRowSpan
:
null
ariaSelected
:
null
ariaSetSize
:
null
ariaSort
:
null
ariaValueMax
:
null
ariaValueMin
:
null
ariaValueNow
:
null
ariaValueText
:
null
assignedSlot
:
null
attributeStyleMap
:
StylePropertyMap {size: 0}
attributes
:
NamedNodeMap
0
:
value
1
:
onclick
baseURI
:
"https://site.com/page_9.html"
childNodes
:
NodeList []
firstChild
:
null
isConnected
:
false
lastChild
:
null
localName
:
"onclick"
name
:
"onclick"
namespaceURI
:
null
nextSibling
:
null
nodeName
:
"onclick"
nodeType
:
2
nodeValue
:
"window.location = 'add_cart.asp?quick=1&item_id=24738'"
ownerDocument
:
document
ownerElement
:
input.btn
parentElement
:
null
parentNode
:
null
prefix
:
null
previousSibling
:
null
specified
:
true
textContent
:
"window.location = 'add_cart.asp?quick=1&item_id=24738'"
value
:
"window.location = 'add_cart.asp?quick=1&item_id=24738'"
[[Prototype]]
:
Attr
2
:
class
3
:
onmouseover
4
:
onmouseout
5
:
type
class
:
class
onclick
:
onclick
baseURI
:
"https://site.com/page_9.html"
childNodes
:
NodeList []
firstChild
:
null
isConnected
:
false
lastChild
:
null
localName
:
"onclick"
name
:
"onclick"
namespaceURI
:
null
nextSibling
:
null
nodeName
:
"onclick"
nodeType
:
2
nodeValue
:
"window.location = 'add_cart.asp?quick=1&item_id=24738'"
ownerDocument
:
document
ownerElement
:
input.btn
parentElement
:
null
parentNode
:
null
prefix
:
null
previousSibling
:
null
specified
:
true
textContent
:
"window.location = 'add_cart.asp?quick=1&item_id=24738'"
value
:
"window.location = 'add_cart.asp?quick=1&item_id=24738'"
Буду благодарен за помощь