Следующее будет отображать положение последней скрытой рамки при каждом нажатии:
var current = undefined;
document.body.addEventListener('click', fn, true);
$('#topLeft').hover(function(){
current = 'topLeft'
})
$('#topRight').hover(function(){
current = 'topRight'
})
$('#bottomLeft').hover(function(){
current = 'bottomLeft'
})
$('#bottomRight').hover(function(){
current = 'bottomRight'
})
function fn(){
console.log(current)
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div style="width:100px; height:100px;">
<input id="topLeft" style="width:30px; height: 30px; background-color:green;" />
<input id="topRight" style="width:30px; height: 30px; background-color:red;" />
<input id="bottomLeft" style="width:30px; height: 30px; background-color:yellow;" />
<input id="bottomRight" style="width:30px; height: 30px; background-color:blue;" />
</div>
Для вашей конкретной проблемы просто устанавливайте переменную всякий раз, когда кто-то нажимает на инструмент:
$('#shovel').click(function(){
current = 'shovel'
})
, затем проверяйте переменную при нажатиина почве
$('#soil').click(function(){
if(current === 'shovel')
[whatever]
else
[whatever 2]
})
Примечание:
Вы устанавливаете курсор как "url(img/Shovel.png), pointer"
, а затем сравниваете его с "url(img/Shovel.png)"
.Вы пытались отладить значение cursor
на данный момент?
document.body.style.cursor = "url(\"img/Shovel.png\"), pointer";
console.log(document.body.style.cursor) // url("img/Shovel.png"), pointer
var result = (document.body.style.cursor === "url(\"img/Shovel.png\")")
console.log(result) // false
result = (document.body.style.cursor === "pointer")
console.log(result) // false
result = (document.body.style.cursor === "url(\"img/Shovel.png\"), pointer")
console.log(result) // true