我知道我是 .net 世界的新手,所以我知道和理解的东西是有限的。我正在使用 Sitecore,Sitecore 在幕后生成 .aspx 页面,所以我无法访问源代码,我可以访问的是 .ascx,它是子布局......所以我尝试将一些 javascript 放到布局......我读到我可以使用标签进行此操作,但是当我现在运行程序时,它不会触发。有什么遗漏的,请指教。谢谢您的帮助。
<!-- Custom Feedback Code -->
<script type="text/javascript">
function showModal() {
var url = document.URL;
var popUp = 'http://local.meau.com/components/supportcenter/feedback.aspx?value=';
var site = popUp + url;
var runpopUp = 50;
if (runpopUp >= Math.random() * 100) {
$(document).ready(function () {
$.fancybox({
'width': 500,
'height': '55%',
'autoScale': false,
'transitionIn': 'none',
'transitionOut': 'none',
'type': 'iframe',
'href': site,
'showCloseButton': false,
'title': 'We Request your Feedback'
});
});
}
}
</script>
<!-- End of Custom Feedback Code -->