如何 获取当前光标所在的字符属性 关键点
function queryCommandState(const cmdID: WideString): WordBool; safecall; 粗体 斜体 下划线 删除线 对齐方式 左 中 右 数字排序 圆的排序 上标 下标 functi...
分类:
其他好文 时间:
2014-08-01 19:35:32
阅读次数:
418
WebBrowser1.Document as IHTMLDocument2 关键点 function execCommand(const cmdID: WideString; showUI: WordBool; value: OleVariant): WordBool; safecall; 实现过...
分类:
其他好文 时间:
2014-08-01 19:28:42
阅读次数:
652
获取所有id以a开头的div$("div[id^='a']")$('div').last()$('#item1')点击这里 需要显示、隐藏的内容 $("div#select").click(function(){$(this).next('div').slideToggle();})这里的$(thi...
分类:
其他好文 时间:
2014-08-01 19:28:32
阅读次数:
199
$(window).load(function(e){ waterfall(); var dataInt={'data':[{'src':'1.jpg'},{'src':'2.jpg'},{'src':'3.jpg'},{'src':'4.jpg'}]}; $(window).scroll(func...
分类:
Web程序 时间:
2014-08-01 19:22:32
阅读次数:
273
$("input#checkbox1").click(function() { console.log($(this).attr('checked')); console.log($(this).prop("checked")); });点击checkbox输出:u...
分类:
其他好文 时间:
2014-08-01 19:17:32
阅读次数:
246
1 // Internet Explorer 8.0.7601.17514 | Chrome 34.0.1847.131 m | Firefox 30.0 2 (function () { 3 4 jQuery.support = {}; 5 6 var root ...
分类:
Web程序 时间:
2014-08-01 19:14:42
阅读次数:
435
1.找到ecshop\includes\cls_image.php文件搜索function gd_version改成static function gd_version2、Strict Standards: Only variables should be passed by reference i...
分类:
Web程序 时间:
2014-08-01 19:10:02
阅读次数:
201
web前端js代码:$.ajaxSetup({ contentType : "application/x-www-form-urlencoded;charset=utf-8", complete : function(xhr, textStatus) { if (xhr.s...
分类:
其他好文 时间:
2014-08-01 19:02:02
阅读次数:
172
$("#closes").click(function(){ $("#wxdown").hide(); $("#h50").hide(); });
分类:
其他好文 时间:
2014-08-01 18:54:32
阅读次数:
120
1.jQuery鼠标滚轮事件插件Mouse Wheel 下载链接:https://github.com/brandonaaron/jquery-mousewheel/ 使用方法:// using bind$('#my_elem').bind('mousewheel', function(even.....
分类:
Web程序 时间:
2014-08-01 18:48:22
阅读次数:
418