//Get width and resize another element
$(document).ready(function() {
function ResizeSearch(GridID, SearchID) {
var eleWidth = $("#" + GridID).width();
$("#" + SearchID).width(eleWidth);
}
$("#getp").click(function() {
ResizeSearch("<%= gvValidStatus.ClientID %>", "ValidStatusSearch");
});
});
これは、多くのスタックオーバーフロー関係者にとって単純な質問です。次のようなコードが少しあります。
var www = '?points=City%20Chairman%20Brutas&another=test';
var name = 'points';
var match = RegExp(RegExp('[?&]' + name + '=([^&]*)').exec(www)[1]);
match = decodeURIComponent(match);
match = match.replace('\/','');
document.write(match);
コードは非常に簡単です。jsfiddle の目的でvar
、使用する代わりに を作成しましたwindow.location.search
。match.replace
これが正しく機能するには、GLOBAL にする必要があることを理解しています。現在、これを出力します:
City Chairman Brutas/
に変更match.replace
しmatch.replace('\//g','');
ても機能しません。
上記の出力:/City Chairman Brutas/
誰かが私を正しい方向に向けることができれば、それは素晴らしいことです。