如何通过弹出框标题动态替换页面标题?
How to replace page title dynamically by popup box title?
我的索引页包含弹出框。如果单击弹出框,我想用弹出框标题替换索引页标题。
例如
<title><?php echo $title?></title>
我要显示如下:
<?php
if(condition){ (->*such as #model2 is clicked*)
$title="Model2 Section";
}
else{
$title="Home"
}
?>
我使用的弹出框如下:->
(弹出框为link)
<article>
<a href="#modal2" class="dsnbutton ybank" id="pop_button">Model 2</a>
</article>
弹出框
<div class="remodal" data-remodal-id="modal2" role="dialog" aria-labelledby="modal2Title" aria-describedby="modal2Desc">
如何更改标题?任何想法。
您可以在 JavaScript 中使用 document.title = "new title"
执行此操作
我的索引页包含弹出框。如果单击弹出框,我想用弹出框标题替换索引页标题。
例如
<title><?php echo $title?></title>
我要显示如下:
<?php
if(condition){ (->*such as #model2 is clicked*)
$title="Model2 Section";
}
else{
$title="Home"
}
?>
我使用的弹出框如下:-> (弹出框为link)
<article>
<a href="#modal2" class="dsnbutton ybank" id="pop_button">Model 2</a>
</article>
弹出框
<div class="remodal" data-remodal-id="modal2" role="dialog" aria-labelledby="modal2Title" aria-describedby="modal2Desc">
如何更改标题?任何想法。
您可以在 JavaScript 中使用 document.title = "new title"