<form action="" method="get" name="query_form" onsubmit="submit_query_form();return false" style="padding-right:135px" _lpchecked="1">
<input type="text" name="site" id="site" class="input_02" size="40" autocomplete="off" onclick="DisplayAllSitesBox()" value="">
像这样的是不是提取不出带问号的搜索串 method=get
v2ex的好像不能提取 没有action
<form onsubmit="return dispatch()" _lpchecked="1">
<input type="text" maxlength="40" name="q" id="q" value="">
维基百科的可以
<form action="/w/index.php" id="searchform">
<input type="search" name="search" placeholder="搜索" title="搜索维基百科[alt-shift-f]" accesskey="f" id="searchInput" tabindex="1" autocomplete="off">
提取为http://zh.wikipedia.org/w/index.php?search=%s
1
aaaa007cn 2015-02-07 17:13:19 +08:00
onsubmit
http://www.w3schools.com/tags/ev_onsubmit.asp v2ex 的 onsubmit 在 https://www.v2ex.com/static/js/v2ex.js 搜 dispatch |
2
aaaa007cn 2015-02-07 17:31:45 +08:00
忘说了
如果 onsubmit 中找不到相关提交地址,或者 return false 了 那么就用当前页面地址作为 action 的值 http://www.w3schools.com/html/html_forms.asp 见 The Action Attribute 这节 |
3
aaaa007cn 2015-02-07 17:46:40 +08:00
>> 如果 onsubmit 中找不到相关提交地址,或者 return false 了
>> 那么就用当前页面地址作为 action 的值 如果没有设置 action,并且 onsubmit 中找不到相关提交地址,onsubmit 也没有 return false 那么就用当前页面地址作为 action 的值 |