我尝试了这一点,但还有许多其他方法仍然无效:
我需要在带有Filemaker的Webviewer中使用它(MBS(“ WebView.RunJavaScript”; WebViewerRef; Javascript))
脚本:$("#positiveButtonExpand borRad5 jq-picHover").click(function()
在网页上:
<fieldset>
<label class="formLabelExpand">Rechercher par numéro de commande :</label>
<input class="formInputTextMedium resetValue floatLeft borRad5" id="id_1405652204_ScopusIdFilter" name="id_1405652204.ScopusIdFilter" type="text" value="saisissez le n° de la commande">
<button name="id_1__" type="submit" class="positiveButtonExpand borRad5 jq-picHover">OK</button>
</fieldset>
感谢您的所有回答和建议,我认为没有人可以从网站或文件制作者那里获得帮助。 :)
最佳答案
positiveButtonExpand是不是ID的类,可以使用.positiveButtonExpand
而不是#positiveButtonExpand
进行选择。
$(".positiveButtonExpand").click(function(){
// code
});