我有一个多页的缩略图文档。 所有的文件都运行顺利, 但每时每刻, 在浏览各页时, 一页会以白色屏幕显示。 页脚和页眉会显示, 但中间没有显示任何页脚和页眉 。
我的猜测是,一个特定的事件正在造成错误, 或者至少会指向我正确的方向。 我如何让 jQuery 在浏览器主控器发生时写出每个事件? log?
我有一个多页的缩略图文档。 所有的文件都运行顺利, 但每时每刻, 在浏览各页时, 一页会以白色屏幕显示。 页脚和页眉会显示, 但中间没有显示任何页脚和页眉 。
我的猜测是,一个特定的事件正在造成错误, 或者至少会指向我正确的方向。 我如何让 jQuery 在浏览器主控器发生时写出每个事件? log?
jQuery Moved 没有一个能够调试所有 JQM 事件的开关。 网站推荐未压缩脚本, 供调试使用, 但并不完全方便在控制台记录所有内容 。
It may help to bind to every event on the page or at least the $.mobile.base
object. Check out this post for how to do that:
How can I bind all events on a DOM element?
我在寻找类似的东西 并几乎推出我自己的 之前发现这一点:
http://view.jquerymobile.com/master/tools/
基本上,人们可以使用页面事件日志记录器书签来动态输入 进入 DOM,并将事件记录到标准控制台.log。如果想看到所有事件(如“mobileinit”),请在您的页面中加入脚本。我通常这样做:
{% if debug %}
<script src="http://view.jquerymobile.com/master/tools/log-page-events.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.js"></script>
{% else %}
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
{% endif %}
值得指出的是,并非所有事件都记录在记录上(例如pointchange ),但大多数事件都是这样的。它节省了我相当长的时间去调试和理解框架。
The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...
How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.
I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...
I have a div <div id="masterdiv"> which has several child <div>s. Example: <div id="masterdiv"> <div id="childdiv1" /> <div id="childdiv2" /> <div id="...
I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.
I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...
Ok, I m stumped. Basically, this script works fine in FF, but not in IE (6,7 or 8) - in which it returns an "Object doesn t support this property or method" error. Any ideas?: function ...
What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...