我的工作在網站上,我需要一個代碼幫助,將評估爲true,如果該URL是檢測URL使用正則表達式
stackoverflow.com/users/anytext
但不當網址
stackoverflow.com/users/
這裏是我的代碼:
<style>
.hidden {
display: none;
}
<body>
<div style = 'height:200px; width:200px; background-color: blue;' class = 'testbox' id = 'testbox'></div>
<script>
function storeurl() {
var testbox = document.getElementById('testbox');
varurl = document.URL; // it should be Global variable, so remove var
\t
if (varurl == 'file:///C:/Users/laptop%202/Desktop/test.html') { /* Need this to detect the url */
if(!testbox.classList.contains('hidden')){
\t \t testbox.classList.add("hidden");
\t \t };
\t }
else {
\t return varurl;
\t };
};
document.onclick = storeurl;
</script>
</body>
我試圖用純JavaScript來實現這一目標。我正在看正則表達式,但沒有多少運氣。
'/stackoverflow\.com\/users \ /.+/。test(url)' – dandavis