I've just hit this problem, and am now using the following pair of techniques;
Firstly, most browsers use the "first" submit button found on the form, and as I want my default action to be "Send", I add the following immediately after the tag:
<input type="submit" name="Send" value="hidden for default enter action" style="display:none">
It's not displayed, but still used as a submit button when hitting enter - except on the iPhone for some reason - possibly webkit decides that the hidden submit button should be ignored, as it's hidden. For these browsers, I simply do the following;
<input type="text" name="test" value="something"
onfocus="this.form.submitBtn.name='Send';"
onblur="this.form.submitBtn.name='Search';"
>
<input type="submit" id="submitBtn" name="Search" value="Search">
i.e. when the users clicks on the input field, it changes the name of the default button to the action that I want; when I click out of the field, it returns to the original.