gpt4 book ai didi

javascript - JQuery Lipsum 生成器不生成单词

转载 作者:行者123 更新时间:2023-12-02 17:50:04 26 4
gpt4 key购买 nike

有一个名为 Lipsum.com 的网站,它会生成随机文本。我正在尝试使用 jquery 生成一个单词并将其保存到一个变量中。我找到了这个[1]:http://sanderkorvemaker.nl/jquery/jLorem.php这可能真的很好,但我不知道为什么它不起作用。基于这个例子,我想出了解决方案,并且我的解决方案下有一个名为“Script”的文件夹中的javascript文件,但我仍然没有在屏幕上得到任何输出。

这是我的代码:

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.7.2.min.js" type="text/javascript"</script>
<script src="Script/jquery.lorem.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.ipsum').lorem({ type: 'paragraphs', amount: '4', ptags: true });
});
</script>
</head>
<body>
<div class="ipsum"></div>
</body>
</html>

最佳答案

添加一个类为“ipsum”的 div。

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="http://code.jquery.com/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="Script/jquery.lorem.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.ipsum').lorem({ type: 'paragraphs', amount: '4', ptags: true });
});
</script>
</head>
<body>
<div class="ipsum"></div>
</body>
</html>

关于javascript - JQuery Lipsum 生成器不生成单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21449017/

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