Files
Pandora/test.html
2025-08-11 23:49:58 +08:00

42 lines
815 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>无标题文档</title>
</head>
<body>
<div class="test">
{{test}}
<div class="rect" --show="false">{{test}}</div>
</div>
<template route="/" src="index.html"></template>
</body>
<script src="Pandora.min.js"></script>
<script>
const a = $('.test').Mush({
data: {
test: '测试',
},
})
console.log($('.test').text())
$('.rect').css({
width: '100px',
height: '100px',
background: 'red',
})
$('.rect').click(() => {
console.log('click')
})
$().wxSDK({
apiUrl: 'https://api.pandorastudio.cn/common/wxShare?url=',
shareIcon: `https://src.pandorastudio.cn/favicon.jpg`,
debug: true,
})
</script>
</html>