seçiliyse php olmadan, menü stilini değiştirmek

3 Cevap php

how can i change the style of menu, if it is selected, without php? i can do it by php

`<? if($_GET[id] == "this_menu") echo "style='color:red'"?>` 

ama php olmadan bunu yapmak istiyorum. bu mümkün mü? teşekkürler

3 Cevap

Eğer istemci üzerinde yapmak istiyor musunuz? eğer öyleyse, JavaScript kullanın.

JS ile

document.getElementById (gup ("param")) setAttribute ('style', 'color: red').;

function gup( param ) {

var name = param.toLowerCase();
var regexS = "[\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS ); var tmpURL = window.location.href;
var results = egex.exec( tmpURL );
if( results == null ) { // Try to find an alternative value
if (typeof alternatives == "object") {
if(typeof alternatives[name] !="undefined") { return alternatives[name];
}
} return "";
} else {
return results[1];
} };

kolayca javascript tarafından yapılabilir yapılabilir:

Bu gibi bir şey kullanabilirsiniz

document.getElementById('myMenu').style.color='#f0f0f0';