尝试让 XUI 工作
我正在尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要将代码包装在“就绪”函数中:
You need to wrap your code in a 'ready' function:
给你,这是一个例子
Here you go, this is an example
罗伯特-没有错误,但它不起作用!
try:
同样将js移至页面底部。
我在 XUI 中没有找到 $(document).ready() 的等效项。
Robert- No errors, but it don't work!
try:
Also move the js to the bottom of the page.
I haven't found equivalent for $(document).ready() in XUI.