尝试让 XUI 工作

发布于 2024-09-24 04:25:55 字数 732 浏览 6 评论 0原文

我正在尝试让 javascript 框架 XUI 正常工作,但无法使其在任何桌面浏览器上正常工作。有关 XUI 的更多信息,请点击此处... http://xuijs.com/documentation

<script type='text/javascript' src='xui-more-1.0.0.min.js'></script>
<!-- <script type='text/javascript' src='xui-bb-1.0.0.min.js'></script>  -->

<script>

   x$('button').click(function(e){ 
        alert('tee hee!');
    });

   x$('a.navigation').css({ background:'yellow' });

   alert("at least this works!");
</script>

<a href='http://google.com' class='navigation' >this is a link</a>
<br><br>
<input type='button' id='button' value='click me!'>

I am trying to get javascript framework XUI working, but having trouble getting it to work on any desktop browser. More on XUI here... http://xuijs.com/documentation

<script type='text/javascript' src='xui-more-1.0.0.min.js'></script>
<!-- <script type='text/javascript' src='xui-bb-1.0.0.min.js'></script>  -->

<script>

   x$('button').click(function(e){ 
        alert('tee hee!');
    });

   x$('a.navigation').css({ background:'yellow' });

   alert("at least this works!");
</script>

<a href='http://google.com' class='navigation' >this is a link</a>
<br><br>
<input type='button' id='button' value='click me!'>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

子栖 2024-10-01 04:25:55

您需要将代码包装在“就绪”函数中:

<script type="text/javascript">
xui.ready(function() { 
    // x$ code in here...
});
</script>

You need to wrap your code in a 'ready' function:

<script type="text/javascript">
xui.ready(function() { 
    // x$ code in here...
});
</script>
情痴 2024-10-01 04:25:55

给你,这是一个例子

x$(window).on('load', function() { 
x$('#button').click(function () {
    alert('Hello');
});
});

Here you go, this is an example

x$(window).on('load', function() { 
x$('#button').click(function () {
    alert('Hello');
});
});
幸福%小乖 2024-10-01 04:25:55

罗伯特-没有错误,但它不起作用!

try:

   x$('#img_del1').on( 'click', function(e){    

同样将js移至页面底部。

我在 XUI 中没有找到 $(document).ready() 的等效项。

Robert- No errors, but it don't work!

try:

   x$('#img_del1').on( 'click', function(e){    

Also move the js to the bottom of the page.

I haven't found equivalent for $(document).ready() in XUI.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文