gpt4 book ai didi

javascript - Jade 变渲染

转载 作者:行者123 更新时间:2023-12-02 17:36:35 24 4
gpt4 key购买 nike

各位, 我将如何访问我在脚本中设置的变量。 ?

#someModal.modal.fade.large
.modal-dialog(style="width:70%")
.modal-content
.modal-header
button.close(type='button', data-dismiss='modal', aria-hidden='true') ×
h2.modal-title #{someVariable}
.modal-body
h3
...

script.
| var someVariable = #{someVariable};

script.
$('body').on('show.bs.modal', '.modal', function () {
var someVariable = 'test';
});

最佳答案

在页面加载之前,您的脚本不会开始运行,因此,jade 将永远无法访问客户端上设置的变量。您应该使用 jQuery 来修改 HTML 元素。

script.
var $modal = $('#someModal')
, $title = $modal.find('.modal-title');
$modal.on('show.bs.modal', '.modal', function () {
var someVariable = 'test';
$title.text(someVariable);
});

$modal.modal();

关于javascript - Jade 变渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22580325/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com