我正在开发一个网站,我需要编写一些JS,因为我无法使用任何库,例如jQuery ......
我需要重写的代码是一个简单的if statement
$(document).ready(function() {
var totalP = $('#shopping-cart-totals-table tr:first .a-right .price').html();
totalP = parseFloat(totalP.slice(1));
if (!window.location.href.indexOf("gpf") > 0) {
$('ul.sp-methods li:first-of-type').hide();
} else if (window.location.href.indexOf("gpf") > 0 && totalP < 100){
$('ul.sp-methods li:last-of-type').hide();
}
});
我如何定位目标元素,例如......
var totalP = $('#shopping-cart-totals-table tr:first .a-right .price');
答案 0 :(得分:0)
在.querySelectorAll()
或DOM元素上使用方法document
。