【发布时间】:2018-06-16 20:37:27
【问题描述】:
所以我正在使用以下代码运行 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>
这不起作用。我需要用引号括起来的警报功能“,而不是半引号”。我做错了什么?
【问题讨论】:
-
你好,我的 2c:我更喜欢spinneret:更容易编写宏的语义,html 验证(带有警告,方便),可以包括降价,更多。
标签: common-lisp hunchentoot cl-who parenscript