我想扩展一个核心的jQuerymobile函数。 这是JQM库的链接:http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.js
我想更改第6574行
headerClose;
进入
headerClose = $( "<a>", {
"text": widget.options.closeText,
"href": "#",
"class": "ui-btn-left"
}).attr( "data-" + $.mobile.ns + "iconpos", "notext" ).attr( "data-" + $.mobile.ns + "icon", "delete" ).appendTo( header ).buttonMarkup();
我想从自定义的js文件中直接更改它,而不是直接在JQM库中更改它。我正在寻找一个所需代码最少的解决方案。
提前致谢。