-2

我正在使用 Prototype 工具提示,但无法在内容中使用引号 (" ")、段落等。下面是示例。

<div style="margin-right: 2px" id="bio" class="masters-bio">Bio</div>

    <script type="text/javascript" language="javascript">
        new Tip('bio', "Lorem ipsum "dolor" sit amet, consectetur adipiscing elit. Ut rhoncus mollis tincidunt. Curabitur rhoncus suscipit dui, quis tristique est posuere in. Nam in pretium tellus.", {
            title: "Bio",
            closeButton: true,
            showOn: 'click',
            hideOn: { element: 'closeButton', event: 'click'},
            stem: 'bottomMiddle',
            hook: { target: 'topMiddle', tip: 'bottomMiddle' },
            offset: { x: 0, y: -2 },
            width: '300px',
            style: 'protogrey'
        });
    </script>
4

3 回答 3

1

使用反斜杠转义引号。只需将\它们放在每个字符串之前。例子:

"Lorem ipsum \"dolor\" sit amet"
于 2012-08-10T11:56:43.820 回答
1
  new Tip('bio', "Lorem ipsum \"dolor\" sit amet.....

使用反斜杠\转义引号。

于 2012-08-10T11:57:05.093 回答
1

像这样使用反斜杠

"This is \"text\" for"
于 2012-08-10T11:57:48.953 回答