gpt4 book ai didi

javascript - jQuery 在 smarty 代码上抛出 Uncaught Error

转载 作者:行者123 更新时间:2023-12-02 16:18:08 25 4
gpt4 key购买 nike

我收到以下错误消息

Uncaught Error: Syntax error, unrecognized expression: [value={if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{/if}]

源自此代码:

$('.id_state option[value={if isset($smarty.post.id_state) {$smarty.post.id_state|intval}{/if}]').prop('selected', true);

我不知道为什么它会抛出这样的错误,因为它后面的代码(实际上是下一行)就像一个魅力

下面的代码可以正常运行

$('.id_state_invoice option[value={if isset($smarty.post.id_state_invoice)}{$smarty.post.id_state_invoice|intval}{/if}]').prop('selected', true);

最佳答案

你的代码:

{if isset($smarty.post.id_state) {$smarty.post.id_state|intval}{/if}

需要:

{if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{/if}

关于javascript - jQuery 在 smarty 代码上抛出 Uncaught Error ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29396735/

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