2

因此,我正在使用以下代码运行 parenscript 教程:

    (defparameter *js-string-delimiter* #\")
    (hunchentoot:define-easy-handler (tutorial1 :uri "/tutorial1") ()
    (cl-who:with-html-output-to-string (s)
                (:html
                 (:head (:title "Parenscript tutorial, example 1"))
                 (:body (:h2 "Parenscript totorial: 1st example")
                    "Please click the link below." :br
                    (:a :href "#" :onclick (parenscript:ps (alert "Hello World!"))
                    "Hello World!")))))

页面呈现,但可点击的链接不起作用。当我查看源代码时,我得到以下信息:

<html><head><title>Parenscript tutorial, example 1</title></head><body><h2>Parenscript totorial: 1st example</h2>Please click the link below.<br /><a href='#' onclick='alert('Hello World!');'>Hello World!</a></body></html>

哪个不起作用。我需要用引号“而不是半引号”关闭警报功能。我做错了什么?

4

1 回答 1

2

好吧,看了一圈,发现教程好像错了。您应该使用 parenscript:ps-inline 来获取正确的引用,而不是使用 parenscript:ps 来生成代码。

希望这对其他人有帮助。

于 2018-01-07T19:15:35.830 回答