我想使用链接加载页面,根据我点击的链接,我想更改页面上的页边距。 如果我点击链接1,我希望保证金为0,但如果我点击链接2,我希望它为350.
如果我知道JavaScript中的ID,有没有办法加载页面并设置元素的边距?我很高兴使用JavaScript打开页面。 我不想使用jQuery。
答案 0 :(得分:1)
www.myurl.com/page.html?1
添加以下链接: 链接1 链接2
在Page.html上将javascript写为
<body onload="setmargin()">
<script>
function setmargin() {
var query = window.location.search.substring(1);
if(query==1)
{//set margin as you want}
else
{//set margin as you want}
}
</script>