我有这个代码。
{if $loginUrl}
{literal}
<script type="text/javascript">
var newwindow;
var intId;
function login() {
var screenX = typeof window.screenX != 'undefined' ? window.screenX : window.screenLeft,
screenY = typeof window.screenY != 'undefined' ? window.screenY : window.screenTop,
outerWidth = typeof window.outerWidth != 'undefined' ? window.outerWidth : document.body.clientWidth,
outerHeight = typeof window.outerHeight != 'undefined' ? window.outerHeight : (document.body.clientHeight - 22),
width = 500,
height = 270,
left = parseInt(screenX + ((outerWidth - width) / 2), 10),
top = parseInt(screenY + ((outerHeight - height) / 2.5), 10),
features = (
'width=' + width +
',height=' + height +
',left=' + left +
',top=' + top
);
newwindow=window.open('{$loginUrl}','Login by facebook',features);
if (window.focus) {newwindow.focus()}
return false;
}
</script>
{/literal}
{/if}
它是 dwoo 模板,我想知道如何在 javascript 中使用我的 dwoo 变量?我试图在代码中看到它,但它不起作用。我需要在 {literal} 之间扭曲我的代码,以便它可以工作。