如果页面具有一定的URL,是否有一个jQuery事件处理程序可以运行脚本?类似于$( document ).ready(function() {
,但仅当页面具有特定URL时。
我想在页面准备就绪时运行脚本,但仅适用于带有url'.../sosings/sosings somethings/''的页面。
该视图的链接将重定向到新URL以更改布局方面 - 但它是相同的视图(我正在使用Django Web框架)
您可以使用window.location
,如下: -
一个例子: -
if(window.location.href =='http://stacksnippets.net/js'){
console.log(window.location.hostname);
console.log(window.location.href);
}else{
$('#getHostNameandHref').html(window.location.hostname +'----'+window.location.href);
console.log('other page');
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="getHostNameandHref"><div>
注意: - 您可以检查console.log(window.location);
以查看可以使用的可用选项。THANKS