我不能让这个工作。我不是最好的,也不知道这段代码是否有意义。我尝试检查网址是否包含此文本,如果是<Document
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://customNameSpaceFromXsd/XMLSchema.xsd"
xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03 pain.001.001.03.xsd">
:
.click()
答案 0 :(得分:0)
尝试从HTML元素而不是jQuery对象触发单击。
jQuery(document).ready(function ($) {
if (window.location.href.indexOf("Peripherie") > -1) {
$(".page-id-13127 .toggle_managed .nav .nav-tabs li:nth-child(5) a")[0].click();
}
});
HTMLElement.click()
在这里演示......
http://jsfiddle.net/b9x0ykxb/
jQuery.click()
在这里演示......
http://jsfiddle.net/b9x0ykxb/1/