我需要使用window.location=
的echo
和PHP
的幫助。這裏是我的代碼:如何在使用php代碼的回顯中使用window.location
echo
'<div class="adsa">
<div class="adimg125" style="'.$stylea.'">
<div onclick="event.cancelBubble=true;if (event.stopPropagation) event.stopPropagation(); window.location='.$url.'" class="check" style="'.$check.'">Check Monitors</div>
</div>
</div>';
我的數據顯示很好,但鏈接不工作意味着它不顯示在''爲打開鏈接。下面是其中顯示
<div class="check" onclick="event.cancelBubble=true;if (event.stopPropagation) event.stopPropagation(); window.location=/index.php?key=perfectdeposit.biz" style="background: #767a81 none repeat scroll 0 0; color: white; cursor: pointer; display: none; font-size: 13px; padding: 2px 0 3px; position: relative; text-align: center; top: -132px; width: 117px; margin-left: 38px">Check Monitors</div>
你可以看到這裏是不是在該行顯示「」我的數據
window.location=/index.php?key=perfectdeposit.biz
它需要表現出這樣的
window.location='/index.php?key=perfectdeposit.biz'
您window.location'後'失蹤報價,應該是這樣'了window.location = A類= 「檢查」' –
「 '$網址。'」是的,你是對的,但當我使用鏈接,然後它的顯示相同,因爲我發佈 –