我是Jquery的新手,我想让Jquery代码获取当前页面的url,如果url包含某些字符串,则加载远程元素。
示例:
我有这样的页面网址:
"http://......./Country/AU/result-search-to-buy"
"http://......./Country/CA/result-search-to-buy"
"http://......./Country/UK/result-search-to-buy"
部分“/ Country / AU”是我需要确定我应该加载哪个页面元素,然后如果“AU”我从“/state-loader.html .state-AU”加载,如果“CA”我从“/state-loader.html .state-CA”
加载我有一个内置模块“ {module_pageaddress} ”来获取当前页面url的值,我只是不知道Jquery逻辑让它工作。
我期待这样的事情:
if {module_pageaddress} contains "/Country/AU/"
$('#MyDiv').load('state-loader.html .state-AU');
if {module_pageaddress} contains "/Country/CA/"
$('#MyDiv').load('state-loader.html .state-CA');
请帮助,非常感谢。
答案 0 :(得分:1)
以下是一些代码:
<!DOCTYPE html>
<html>
<head>
<title>jQuery test page</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
function loadContent(elementSelector, sourceURL) {
$(""+elementSelector+"").load(""+sourceURL+"");
}
function stateURL() {
var startOfResult = '../../state-loader.html #state-';
var match = (/(?:\/Country\/)(AU|US|CA|UK)(?:\/)/).exec(window.location.pathname);
if (match) {
return startOfResult + match[1];
} else {
return startOfResult + 'AU';
}
}
</script>
</head>
<body>
<a href="javascript:loadContent('#content', stateURL())">Link 1</a>
<div id="content">content will be loaded here</div>
</body>
</html>
要加载状态的不同内容的文件:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="state-US">Go USA!</div>
<div id="state-CA">Go Canada!</div>
<div id="state-AU">Go Australia!</div>
<div id="state-UK">Go United Kingdom!</div>
</body>
</html>
在这里看到它的工作:
http://www.quirkscode.com/flat/forumPosts/loadElementContents/Country/US/loadElementContents.html
将... / US / ...替换为...... / AU / ...等,以了解其行为。
原帖,我有想法/原始代码:
http://frinity.blogspot.com/2008/06/load-remote-content-into-div-element.html
答案 1 :(得分:0)
你可以尝试
var countryCode = ... // parse the country code from your module
$('#yourDiv').load('state-loader.html .state-' + countryCode);
查看.load()here的更多示例。
答案 2 :(得分:0)
就拉动网址路径而言,您可以执行以下操作
var path_raw = document.location.path,
path_array = path_raw.split("/");
然后,你可以这样做:
$.ajax({
url: "./remote_data.php?country=" + path_array[0] + "&state=" + path_array[1],
type: "GET",
dataType: "JSON",
cache: false,
success: function(data){
// update all your elements on the page with the data you just grabbed
}
});
答案 3 :(得分:0)
使用我的一行javascript函数获取一系列网址细分:http://joshkoberstein.com/blog/2012/09/get-url-segments-with-javascript
然后,将变量$ countrySegment定义为国家/地区代码所在的段号。
例如: / SEGMENT1 /分段2 /的 CA 强> /
(国家/地区代码第3段)
然后,检查是否设置了第3个数组索引,以及所述索引是“CA”还是“AU”。如果是,请继续加载,将国家/地区代码段替换为.html文件名
function getSegments(){
return location.pathname.split('/').filter(function(e){return e});
}
//set what segment the country code is in
$countrySegment = 3;
//get the segments
$segments = getSegments();
//check if segment is set
//and if segment is either 'AU' or 'CA'
if(typeof $segments[$countrySegment-1] !==undefined && ($segments[$countrySegment-1] == 'AU' || $segments[$countrySegment-1] == 'CA')){
$countryCode = $segments[$countrySegment-1];
$('#target').load('state-loader.html .state-' + $countryCode);
}
答案 4 :(得分:0)
var result= window.location.pathname.match(/\/Country\/([A-Z]+)\//);
if(result){
$('#MyDiv').load('state-loader.html .state-' + result[1]);
}